2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2015-02-04 17:31:13 +01:00
|
|
|
|
|
|
|
object CheckCommand "esxi_hardware" {
|
2015-02-23 15:35:12 +01:00
|
|
|
command = [ PluginContribDir + "/check_esxi_hardware.py" ]
|
2015-02-04 17:31:13 +01:00
|
|
|
|
|
|
|
arguments = {
|
|
|
|
"-H" = {
|
|
|
|
value = "$esxi_hardware_host$"
|
|
|
|
description = "report on HOST"
|
|
|
|
}
|
|
|
|
"-U" = {
|
|
|
|
value = "$esxi_hardware_user$"
|
|
|
|
description = "user to connect as"
|
|
|
|
}
|
|
|
|
"-P" = {
|
|
|
|
value = "$esxi_hardware_pass$"
|
|
|
|
description = "password"
|
|
|
|
}
|
2016-05-31 08:24:28 +02:00
|
|
|
"-C" = {
|
|
|
|
value = "$esxi_hardware_port$"
|
|
|
|
description = "cim port"
|
|
|
|
}
|
2015-02-04 17:31:13 +01:00
|
|
|
"-V" = {
|
|
|
|
value = "$esxi_hardware_vendor$"
|
|
|
|
description = "Vendor code: auto, dell, hp, ibm, intel, or unknown"
|
|
|
|
}
|
|
|
|
"-I" = {
|
|
|
|
value = "$esxi_hardware_html$"
|
|
|
|
description = "generate html links for country XX"
|
|
|
|
}
|
|
|
|
"-i" = {
|
|
|
|
value = "$esxi_hardware_ignore$"
|
|
|
|
description = "comma-separated list of elements to ignore"
|
|
|
|
}
|
2019-05-10 13:46:11 +02:00
|
|
|
"-r" = {
|
|
|
|
set_if = "$esxi_hardware_regex$"
|
|
|
|
description = "Allow regular expression lookups of elements in ignore list"
|
|
|
|
}
|
2015-02-04 17:31:13 +01:00
|
|
|
"-p" = {
|
|
|
|
set_if = "$esxi_hardware_perfdata$"
|
|
|
|
description = "collect performance data for pnp4nagios"
|
|
|
|
}
|
|
|
|
"--no-power" = {
|
|
|
|
set_if = "$esxi_hardware_nopower$"
|
|
|
|
description = "don't collect power performance data"
|
|
|
|
}
|
|
|
|
"--no-volts" = {
|
|
|
|
set_if = "$esxi_hardware_novolts$"
|
|
|
|
description = "don't collect voltage performance data"
|
|
|
|
}
|
|
|
|
"--no-current" = {
|
|
|
|
set_if = "$esxi_hardware_nocurrent$"
|
|
|
|
description = "don't collect current performance data"
|
|
|
|
}
|
|
|
|
"--no-temp" = {
|
|
|
|
set_if = "$esxi_hardware_notemp$"
|
|
|
|
description = "don't collect temperature performance data"
|
|
|
|
}
|
|
|
|
"--no-fan" = {
|
|
|
|
set_if = "$esxi_hardware_nofan$"
|
|
|
|
description = "don't collect fan performance data"
|
|
|
|
}
|
2017-09-12 09:09:30 +02:00
|
|
|
"--no-lcd" = {
|
|
|
|
set_if = "$esxi_hardware_nolcd$"
|
|
|
|
description = "don't collect lcd/display status data"
|
|
|
|
}
|
2015-02-04 17:31:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
vars.esxi_hardware_host = "$address$"
|
2016-05-31 08:24:28 +02:00
|
|
|
vars.esxi_hardware_port = 5989
|
2019-05-10 13:46:11 +02:00
|
|
|
vars.esxi_hardware_regex = false
|
2015-02-04 17:31:13 +01:00
|
|
|
vars.esxi_hardware_perfdata = false
|
|
|
|
vars.esxi_hardware_nopower = false
|
|
|
|
vars.esxi_hardware_novolts = false
|
|
|
|
vars.esxi_hardware_nocurrent = false
|
|
|
|
vars.esxi_hardware_notemp = false
|
|
|
|
vars.esxi_hardware_nofan = false
|
2017-09-12 09:09:30 +02:00
|
|
|
vars.esxi_hardware_nolcd = false
|
2015-02-04 17:31:13 +01:00
|
|
|
}
|
|
|
|
|