ITL: Update ipmi CheckCommand attributes

fixes #123

Signed-off-by: Michael Friedrich <michael.friedrich@icinga.com>
This commit is contained in:
Gerhardt Roman 2017-02-07 17:12:27 +01:00 committed by Michael Friedrich
parent 3546f07675
commit 83c02df36a
2 changed files with 34 additions and 3 deletions

View File

@ -2253,12 +2253,19 @@ ipmi_password | **Optional.** The IPMI password.
ipmi_privilege_level | **Optional.** The IPMI privilege level of the IPMI user.
ipmi_backward_compatibility_mode | **Optional.** Enable backward compatibility mode, useful for FreeIPMI 0.5.\* (this omits FreeIPMI options "--quiet-cache" and "--sdr-cache-recreate").
ipmi_sensor_type | **Optional.** Limit sensors to query based on IPMI sensor type. Examples for IPMI sensor types are 'Fan', 'Temperature' and 'Voltage'.
ipmi_sel_type | **Optional.** Limit SEL entries to specific types, run 'ipmi-sel -L' for a list of types. All sensors are populated to the SEL and per default all sensor types are monitored.
ipmi_exclude_sensor_id | **Optional.** Exclude sensor matching ipmi_sensor_id.
ipmi_exclude_sensor | **Optional.** Exclude sensor based on IPMI sensor type. (Comma-separated)
ipmi_exclude_sel | **Optional.** Exclude SEL entries of specific sensor types. (comma-separated list).
ipmi_sensor_id | **Optional.** Include sensor matching ipmi_sensor_id.
ipmi_protocal_lan_version | **Optional.** Change the protocol LAN version. Defaults to "LAN_2_0".
ipmi_number_of_active_fans | **Optional.** Number of fans that should be active. Otherwise a WARNING state is returned.
ipmi_show_fru | **Optional.** Print the product serial number if it is available in the IPMI FRU data.
ipmi_no_sel_checking | **Optional.** Turn off system event log checking via ipmi-sel.
ipmi_verbose | **Optional.** Be Verbose multi line output, also with additional details for warnings.
ipmi_debug | **Optional.** Be Verbose debugging output, followed by normal multi line output.
### <a id="plugins-contrib-log-management"></a> Log Management

View File

@ -51,14 +51,30 @@ object CheckCommand "ipmi-sensor" {
value = "$ipmi_sensor_type$"
description = "Limit sensors to query based on IPMI sensor type (seperated by comma)"
}
"-ST" = {
set_if = "$ipmi_sel_type$"
description = "Limit SEL entries to specific types. (seperated by comma)"
}
"-x" = {
value = "$ipmi_exclude_sensor_id$"
description = "Exclude sensor matching ipmi_sensor_id"
}
"-xT" = {
set_if = "$ipmi_exclude_sensor$"
description = "Exclude sensors based on IPMI sensor type. (seperated by comma)"
}
"-xST" = {
set_if = "$ipmi_exclude_sel$"
description = "Exclude SEL entries of specific sensor types. (seperated by comma)"
}
"-i" = {
value = "$ipmi_sensor_id$"
description = "Include sensor matching ipmi_sensor_id"
}
"--nosel" = {
set_if = "$ipmi_no_sel_checking$"
description = "Turn off system event log checking via ipmi-sel"
}
"-D" = {
value = "$ipmi_protocal_lan_version$"
description = "Change the protocol LAN version (default: LAN_2_0)"
@ -71,9 +87,17 @@ object CheckCommand "ipmi-sensor" {
set_if = "$ipmi_show_fru$"
description = "Print the product serial number got by ipmi-fru"
}
"--nosel" = {
set_if = "$ipmi_no_sel_checking$"
description = "Turn off system event log checking via ipmi-sel"
"--noentityabsent" = {
set_if = "$ipmi_noentityabsent$"
description = "Skip sensor checks for sensors that have 'noentityabsent' as event state"
}
"-vv" = {
set_if = "$ipmi_verbose$"
description = "Be Verbose multi line output, also with additional details for warnings"
}
"-vvv" = {
set_if = "$ipmi_debug$"
description = "Be Verbose debugging output, followed by normal multi line output"
}
}