File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -1322,6 +1322,7 @@ snmp_invert_search | **Optional.** Invert search result and return CRITICAL sta
1322
1322
snmp_units | ** Optional.** Units label(s) for output value (e.g., 'sec.').
1323
1323
snmp_version | ** Optional.** Version to use. E.g. 1, 2, 2c or 3.
1324
1324
snmp_miblist | ** Optional.** MIB's to use, comma separated. Defaults to "ALL".
1325
+ snmp_multiplier |** Optional.** Multiplies current value, 0 < n < 1 works as divider, defaults to 1
1325
1326
snmp_rate_multiplier | ** Optional.** Converts rate per second. For example, set to 60 to convert to per minute.
1326
1327
snmp_rate | ** Optional.** Boolean. Enable rate calculation.
1327
1328
snmp_getnext | ** Optional.** Boolean. Use SNMP GETNEXT. Defaults to false.
@@ -1357,6 +1358,7 @@ snmpv3_eregi | **Optional.** Return OK state (for that OID) if case-inse
1357
1358
snmpv3_invert_search | ** Optional.** Invert search result and return CRITICAL if found
1358
1359
snmpv3_label | ** Optional.** Prefix label for output value.
1359
1360
snmpv3_units | ** Optional.** Units label(s) for output value (e.g., 'sec.').
1361
+ snmp3_multiplier |** Optional.** Multiplies current value, 0 < n < 1 works as divider, defaults to 1
1360
1362
snmpv3_rate_multiplier | ** Optional.** Converts rate per second. For example, set to 60 to convert to per minute.
1361
1363
snmpv3_rate | ** Optional.** Boolean. Enable rate calculation.
1362
1364
snmpv3_timeout | ** Optional.** The command timeout in seconds. Defaults to 10 seconds.
Original file line number Diff line number Diff line change @@ -1770,6 +1770,10 @@ object CheckCommand "snmp" {
1770
1770
value = "$snmp_miblist$"
1771
1771
description = "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL' for symbolic OIDs.)"
1772
1772
}
1773
+ "-M" = {
1774
+ value = "$snmp_multiplier$"
1775
+ description = "Multiplies current value, 0 < n < 1 works as divider, defaults to 1"
1776
+ }
1773
1777
"--rate-multiplier" = {
1774
1778
value = "$snmp_rate_multiplier$"
1775
1779
description = "Converts rate per second. For example, set to 60 to convert to per minute"
@@ -1898,6 +1902,10 @@ object CheckCommand "snmpv3" {
1898
1902
value = "$snmpv3_miblist$"
1899
1903
description = "List of SNMP MIBs for translating OIDs between numeric and textual representation"
1900
1904
}
1905
+ "-M" = {
1906
+ value = "$snmpv3_multiplier$"
1907
+ description = "Multiplies current value, 0 < n < 1 works as divider, defaults to 1"
1908
+ }
1901
1909
"-u" = {
1902
1910
value = "$snmpv3_units$"
1903
1911
description = "Units label(s) for output data (e.g., 'sec.')"
You can’t perform that action at this time.
0 commit comments