-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #222 from tabaer/master
Various ipmi improvements
- Loading branch information
Showing
4 changed files
with
444 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
modules { | ||
module { | ||
name = "moab" | ||
language = "python" | ||
|
||
# If you change this entry make sure you put it under name_match section | ||
param metric_prefix { | ||
value = "moab" | ||
} | ||
|
||
# Debug flag | ||
param debug { | ||
value = False | ||
} | ||
|
||
# location of Moab config files | ||
param moab_home_dir { | ||
value = "/var/spool/moab" | ||
} | ||
|
||
# Moab server host | ||
#param moab_server { | ||
# value = "moabsrv.mydomain.org" | ||
#} | ||
|
||
# Moab server port | ||
#param moab_port { | ||
# value = 42559 | ||
#} | ||
|
||
# Location of showq binary | ||
param showq_bin { | ||
value = "/opt/moab/bin/showq" | ||
} | ||
|
||
# timeout on Moab client commands | ||
param timeout { | ||
value = 15 | ||
} | ||
} | ||
} | ||
|
||
collection_group { | ||
collect_every = 60 | ||
time_threshold = 90 | ||
|
||
metric { | ||
name_match = "moab_(.+)" | ||
value_threshold = 1.0 | ||
} | ||
|
||
} |
Oops, something went wrong.