Update check_network in docs and itl

fixes #12155
This commit is contained in:
Jean Flach 2016-09-28 11:18:39 +02:00
parent 8c35c821c6
commit 6c565d191d
2 changed files with 10 additions and 5 deletions

View File

@ -1452,13 +1452,14 @@ Collects the total Bytes inbount and outbound for all interfaces in one second,
Custom attributes: Custom attributes:
Name | Description Name | Description
:------------------|:------------ :-------------------|:------------
network\_win\_warn | **Optional**. The warning threshold. network\_win\_warn | **Optional**. The warning threshold.
network\_win\_crit | **Optional**. The critical threshold. network\_win\_crit | **Optional**. The critical threshold.
network\_no\_iastap | **Optional**. Do not print iastap interfaces.
### <a id="windows-plugins-permon-windows"></a> perfmon-windows ### <a id="windows-plugins-perfmon-windows"></a> perfmon-windows
Check command object for the `check_perfmon.exe` plugin. Check command object for the `check_perfmon.exe` plugin.
This plugins allows to collect data from a Performance Counter. After the first data collection a second one is done after `perfmon_win_wait` milliseconds. When you know `perfmon_win_counter` only requires one set of data to provide valid data you can set `perfmon_win_wait` to `0`. This plugins allows to collect data from a Performance Counter. After the first data collection a second one is done after `perfmon_win_wait` milliseconds. When you know `perfmon_win_counter` only requires one set of data to provide valid data you can set `perfmon_win_wait` to `0`.

View File

@ -96,6 +96,10 @@ object CheckCommand "network-windows" {
value = "$network_win_crit$" value = "$network_win_crit$"
description = "Critical threshold" description = "Critical threshold"
} }
"-n" = {
set_if = "$network_no_iastap$"
description = "Don't show isatap interfaces in output"
}
} }
} }