Fix indentation for the snmpv3 check command definition

refs #12838
This commit is contained in:
Gunnar Beutner 2016-10-11 12:43:33 +02:00
parent d1f5118c55
commit fc34afbbeb

View File

@ -1340,76 +1340,76 @@ object CheckCommand "snmpv3" {
arguments = { arguments = {
"-H" = { "-H" = {
value = "$snmpv3_address$" value = "$snmpv3_address$"
description = "Host name, IP Address, or unix socket (must be an absolute path)" description = "Host name, IP Address, or unix socket (must be an absolute path)"
} }
"-p" = { "-p" = {
value = "$snmpv3_port$" value = "$snmpv3_port$"
description = "Port number" description = "Port number"
} }
"-n" = { "-n" = {
set_if = "$snmpv3_getnext$" set_if = "$snmpv3_getnext$"
description = "Use SNMP GETNEXT instead of SNMP GET" description = "Use SNMP GETNEXT instead of SNMP GET"
} }
"-P" = { "-P" = {
value = 3 value = 3
description = "SNMP protocol version" description = "SNMP protocol version"
} }
"-L" = { "-L" = {
value = "$snmpv3_seclevel$" value = "$snmpv3_seclevel$"
description = "SNMPv3 securityLevel" description = "SNMPv3 securityLevel"
} }
"-a" = { "-a" = {
value = "$snmpv3_auth_alg$" value = "$snmpv3_auth_alg$"
description = "SNMPv3 auth proto" description = "SNMPv3 auth proto"
} }
"-U" = { "-U" = {
value = "$snmpv3_user$" value = "$snmpv3_user$"
description = "SNMPv3 username" description = "SNMPv3 username"
} }
"-A" = { "-A" = {
value = "$snmpv3_auth_key$" value = "$snmpv3_auth_key$"
description = "SNMPv3 authentication password" description = "SNMPv3 authentication password"
} }
"-X" = { "-X" = {
value = "$snmpv3_priv_key$" value = "$snmpv3_priv_key$"
description = "SNMPv3 privacy password" description = "SNMPv3 privacy password"
} }
"-o" = { "-o" = {
value = "$snmpv3_oid$" value = "$snmpv3_oid$"
description = "Object identifier(s) or SNMP variables whose value you wish to query" description = "Object identifier(s) or SNMP variables whose value you wish to query"
} }
"-x" = { "-x" = {
value = "$snmpv3_priv_alg$" value = "$snmpv3_priv_alg$"
description = "SNMPv3 priv proto (default DES)" description = "SNMPv3 priv proto (default DES)"
} }
"-w" = { "-w" = {
value = "$snmpv3_warn$" value = "$snmpv3_warn$"
description = "Warning threshold range(s)" description = "Warning threshold range(s)"
} }
"-c" = { "-c" = {
value = "$snmpv3_crit$" value = "$snmpv3_crit$"
description = "Critical threshold range(s)" description = "Critical threshold range(s)"
} }
"-s" = { "-s" = {
value = "$snmpv3_string$" value = "$snmpv3_string$"
description = "Return OK state (for that OID) if STRING is an exact match" description = "Return OK state (for that OID) if STRING is an exact match"
} }
"-r" = { "-r" = {
value = "$snmpv3_ereg$" value = "$snmpv3_ereg$"
description = "Return OK state (for that OID) if extended regular expression REGEX matches" description = "Return OK state (for that OID) if extended regular expression REGEX matches"
} }
"-R" = { "-R" = {
value = "$snmpv3_eregi$" value = "$snmpv3_eregi$"
description = "Return OK state (for that OID) if case-insensitive extended REGEX matches" description = "Return OK state (for that OID) if case-insensitive extended REGEX matches"
} }
"--invert-search" = { "--invert-search" = {
set_if = "$snmpv3_invert_search$" set_if = "$snmpv3_invert_search$"
description = "Invert search result and return CRITICAL if found" description = "Invert search result and return CRITICAL if found"
} }
"-l" = { "-l" = {
value = "$snmpv3_label$" value = "$snmpv3_label$"
description = "Prefix label for output from plugin" description = "Prefix label for output from plugin"
} }
"-m" = { "-m" = {
value = "$snmpv3_miblist$" value = "$snmpv3_miblist$"