Merge pull request #7204 from episodeiv/master

Allow setting the SNMP version for check_iftraffic.pl
This commit is contained in:
Michael Friedrich 2019-06-03 11:20:30 +02:00 committed by GitHub
commit 839c841fb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -2999,6 +2999,7 @@ Name | Description
------------------------|---------------------------------------------------------
iftraffic_address | **Required.** Specifies the remote host. Defaults to "$address$".
iftraffic_community | **Optional.** SNMP community. Defaults to "public'" if omitted.
iftraffic_version | **Optional.** SNMP version to use. Defaults to "1" if omitted. Requires v1.0.2+.
iftraffic_interface | **Required.** Queried interface name.
iftraffic_bandwidth | **Required.** Interface maximum speed in kilo/mega/giga/bits per second.
iftraffic_units | **Optional.** Interface units can be one of these values: `g` (gigabits/s),`m` (megabits/s), `k` (kilobits/s),`b` (bits/s)
@ -3008,7 +3009,7 @@ iftraffic_max_counter | **Optional.** Maximum counter value of net devices in ki
#### iftraffic64 <a id="plugin-contrib-command-iftraffic64"></a>
The [check_iftraffic64](https://exchange.icinga.com/exchange/iftraffic64) plugin
The [check_iftraffic64](https://exchange.icinga.com/exchange/check_iftraffic64) plugin
checks the utilization of a given interface name using the SNMP protocol.
Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):

View File

@ -297,6 +297,10 @@ object CheckCommand "iftraffic" {
value = "$iftraffic_community$"
description = "SNMP community. Defaults to 'public' if omitted."
}
"-V" = {
value = "$iftraffic_version$"
description = "SNMP version. Defaults to '1' if omitted."
}
"-i" = {
value = "$iftraffic_interface$"
description = "Interface name."