mirror of https://github.com/Icinga/icinga2.git
Allow to disable thresholds for ipmi CheckCommand
fixes #5579 Signed-off-by: Michael Friedrich <michael.friedrich@icinga.com>
This commit is contained in:
parent
0b1ce7111c
commit
9ddeba8ce6
|
@ -2531,6 +2531,7 @@ ipmi_protocol_lan_version | **Optional.** Change the protocol LAN version
|
||||||
ipmi_number_of_active_fans | **Optional.** Number of fans that should be active. Otherwise a WARNING state is returned.
|
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_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_no_sel_checking | **Optional.** Turn off system event log checking via ipmi-sel.
|
||||||
|
ipmi_no_thresholds | **Optional.** Turn off performance data thresholds from output-sensor-thresholds.
|
||||||
ipmi_verbose | **Optional.** Be Verbose multi line output, also with additional details for warnings.
|
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.
|
ipmi_debug | **Optional.** Be Verbose debugging output, followed by normal multi line output.
|
||||||
|
|
||||||
|
|
|
@ -75,6 +75,10 @@ object CheckCommand "ipmi-sensor" {
|
||||||
set_if = "$ipmi_no_sel_checking$"
|
set_if = "$ipmi_no_sel_checking$"
|
||||||
description = "Turn off system event log checking via ipmi-sel"
|
description = "Turn off system event log checking via ipmi-sel"
|
||||||
}
|
}
|
||||||
|
"--nothresholds" = {
|
||||||
|
set_if = "$ipmi_no_thresholds$"
|
||||||
|
description = "Turn off performance data thresholds from output-sensor-thresholds"
|
||||||
|
}
|
||||||
"-D" = {
|
"-D" = {
|
||||||
value = "$ipmi_protocol_lan_version$"
|
value = "$ipmi_protocol_lan_version$"
|
||||||
description = "Change the protocol LAN version (default: LAN_2_0)"
|
description = "Change the protocol LAN version (default: LAN_2_0)"
|
||||||
|
|
Loading…
Reference in New Issue