Skip to content

Commit

Permalink
add lustre gmond python module files
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Hunter committed Jun 22, 2015
1 parent e03cd47 commit d6855b0
Show file tree
Hide file tree
Showing 6 changed files with 1,036 additions and 0 deletions.
27 changes: 27 additions & 0 deletions lustre/conf.d/lusclt_llite.pyconf
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
modules {
module {
name = "lusclt_llite"
language = "python"
}
}

collection_group {
collect_every = 60
time_threshold = 600

metric {
name_match = "lusclt_([a-zA-Z0-9]+)_write_bytes_per_sec"
}

metric {
name_match = "lusclt_([a-zA-Z0-9]+)_brw_read_bytes_per_sec"
}

metric {
name_match = "lusclt_([a-zA-Z0-9]+)_file_ops"
}

metric {
name_match = "lusclt_([a-zA-Z0-9]+)_inode_ops"
}
}
19 changes: 19 additions & 0 deletions lustre/conf.d/lusclt_osc.pyconf
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
modules {
module {
name = "lusclt_osc"
language = "python"
}
}

collection_group {
collect_every = 60
time_threshold = 600

metric {
name_match = "lusclt_osc_total_([a-zA-Z0-9]+)"
}

metric {
name_match = "lusclt_([a-zA-Z0-9]+)_total_([a-zA-Z0-9]+)"
}
}
9 changes: 9 additions & 0 deletions lustre/graph.d/lusclt_rpc_report.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"report_name" : "lusclt_rpc_report",
"report_type" : "standard",
"title" : "Lustre Client RPC",
"vertical_label" : "calls/s",
"series" : [
{ "metric": "lusclt_osc_total_ost_ops", "color": "FF0000", "label": "Home", "line_width": "2","type": "stack" }
]
}
10 changes: 10 additions & 0 deletions lustre/graph.d/lusclt_rw_report.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"report_name" : "lusclt_rm_report",
"report_type" : "standard",
"title" : "Lustre Client Bandwidth",
"vertical_label" : "bytes/s",
"series" : [
{ "metric": "lusclt_osc_total_read_bytes_per_sec", "color": "FF8A60", "label": "Read", "line_width": "2","type": "stack" },
{ "metric": "lusclt_osc_total_write_bytes_per_sec", "color": "FF0000", "label": "Write", "line_width": "2","type": "stack" }
]
}
Loading

0 comments on commit d6855b0

Please sign in to comment.