]> granicus.if.org Git - icinga2/blob - doc/10-icinga-template-library.md
Docs: Fix missing default value for cluster-zone checks
[icinga2] / doc / 10-icinga-template-library.md
1 # Icinga Template Library <a id="icinga-template-library"></a>
2
3 The Icinga Template Library (ITL) implements standard templates
4 and object definitions.
5
6 There is a subset of templates and object definitions available:
7
8 * [Generic ITL templates](10-icinga-template-library.md#itl-generic-templates)
9 * [CheckCommand definitions for Icinga 2](10-icinga-template-library.md#itl-check-commands) (this includes [icinga](10-icinga-template-library.md#itl-icinga),
10 [cluster](10-icinga-template-library.md#itl-icinga-cluster), [cluster-zone](10-icinga-template-library.md#itl-icinga-cluster-zone), [ido](10-icinga-template-library.md#itl-icinga-ido), etc.)
11 * [CheckCommand definitions for Monitoring Plugins](10-icinga-template-library.md#plugin-check-commands-monitoring-plugins)
12 * [CheckCommand definitions for Icinga 2 Windows Plugins](10-icinga-template-library.md#windows-plugins)
13 * [CheckCommand definitions for NSClient++](10-icinga-template-library.md#nscp-plugin-check-commands)
14 * [CheckCommand definitions for Manubulon SNMP](10-icinga-template-library.md#snmp-manubulon-plugin-check-commands)
15 * [Contributed CheckCommand definitions](10-icinga-template-library.md#plugin-contrib)
16
17 The ITL content is updated with new releases. Please do not modify
18 templates and/or objects as changes will be overridden without
19 further notice.
20
21 You are advised to create your own CheckCommand definitions in
22 `/etc/icinga2`.
23
24 ## Generic Templates <a id="itl-generic-templates"></a>
25
26 By default the generic templates are included in the [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf) configuration file:
27
28     include <itl>
29
30 These templates are imported by the provided example configuration.
31
32 > **Note**:
33 >
34 > These templates are built into the binaries. By convention
35 > all command and timeperiod objects should import these templates.
36
37 ### plugin-check-command <a id="itl-plugin-check-command"></a>
38
39 Command template for check plugins executed by Icinga 2.
40
41 The `plugin-check-command` command does not support any vars.
42
43 By default this template is automatically imported into all [CheckCommand](09-object-types.md#objecttype-checkcommand) definitions.
44
45 ### plugin-notification-command <a id="itl-plugin-notification-command"></a>
46
47 Command template for notification scripts executed by Icinga 2.
48
49 The `plugin-notification-command` command does not support any vars.
50
51 By default this template is automatically imported into all [NotificationCommand](09-object-types.md#objecttype-notificationcommand) definitions.
52
53 ### plugin-event-command <a id="itl-plugin-event-command"></a>
54
55 Command template for event handler scripts executed by Icinga 2.
56
57 The `plugin-event-command` command does not support any vars.
58
59 By default this template is automatically imported into all [EventCommand](09-object-types.md#objecttype-eventcommand) definitions.
60
61 ### legacy-timeperiod <a id="itl-legacy-timeperiod"></a>
62
63 Timeperiod template for [Timeperiod objects](09-object-types.md#objecttype-timeperiod).
64
65 The `legacy-timeperiod` timeperiod does not support any vars.
66
67 By default this template is automatically imported into all [TimePeriod](09-object-types.md#objecttype-timeperiod) definitions.
68
69 ## Check Commands <a id="itl-check-commands"></a>
70
71 These check commands are embedded into Icinga 2 and do not require any external
72 plugin scripts.
73
74 ### icinga <a id="itl-icinga"></a>
75
76 Check command for the built-in `icinga` check. This check returns performance
77 data for the current Icinga instance.
78
79 The `icinga` check command does not support any vars.
80
81 ### cluster <a id="itl-icinga-cluster"></a>
82
83 Check command for the built-in `cluster` check. This check returns performance
84 data for the current Icinga instance and connected endpoints.
85
86 The `cluster` check command does not support any vars.
87
88 ### cluster-zone <a id="itl-icinga-cluster-zone"></a>
89
90 Check command for the built-in `cluster-zone` check.
91
92 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
93
94 Name                   | Description
95 -----------------------|---------------
96 cluster\_zone          | **Required.** The zone name. Defaults to `$host.name$`.
97 cluster\_lag\_warning  | **Optional.** Warning threshold for log lag in seconds. Applies if the log lag is greater than the threshold.
98 cluster\_lag\_critical | **Optional.** Critical threshold for log lag in seconds. Applies if the log lag is greater than the threshold.
99
100 ### ido <a id="itl-icinga-ido"></a>
101
102 Check command for the built-in `ido` check.
103
104 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
105
106 Name         | Description
107 -------------|---------------
108 ido\_type    | **Required.** The type of the IDO connection object. Can be either "IdoMysqlConnection" or "IdoPgsqlConnection".
109 ido\_name    | **Required.** The name of the IDO connection object.
110
111 ### random <a id="itl-random"></a>
112
113 Check command for the built-in `random` check. This check returns random states
114 and adds the check source to the check output.
115
116 For test and demo purposes only. The `random` check command does not support
117 any vars.
118
119 ### exception <a id="itl-exception"></a>
120
121 Check command for the built-in `exception` check. This check throws an exception.
122
123 For test and demo purposes only. The `exception` check command does not support
124 any vars.
125
126 <!-- keep this anchor for URL link history only -->
127 <a id="plugin-check-commands"></a>
128
129 ## Plugin Check Commands for Monitoring Plugins <a id="plugin-check-commands-monitoring-plugins"></a>
130
131 The Plugin Check Commands provides example configuration for plugin check commands
132 provided by the [Monitoring Plugins](https://www.monitoring-plugins.org) project.
133
134 By default the Plugin Check Commands are included in the [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf) configuration
135 file:
136
137     include <plugins>
138
139 The plugin check commands assume that there's a global constant named `PluginDir`
140 which contains the path of the plugins from the Monitoring Plugins project.
141
142 **Note**: If there are command parameters missing for the provided CheckCommand
143 definitions please kindly send a patch upstream. This should include an update
144 for the ITL CheckCommand itself and this documentation section.
145
146 ### apt <a id="plugin-check-command-apt"></a>
147
148 The plugin [apt](https://www.monitoring-plugins.org/doc/index.html) checks for software updates on systems that use
149 package management systems based on the apt-get(8) command found in Debian based systems.
150
151 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
152
153 Name                    | Description
154 ------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
155 apt_extra_opts          | **Optional.** Read options from an ini file.
156 apt_upgrade             | **Optional.** [Default] Perform an upgrade. If an optional OPTS argument is provided, apt-get will be run with these command line options instead of the default.
157 apt_dist_upgrade        | **Optional.** Perform a dist-upgrade instead of normal upgrade. Like with -U OPTS can be provided to override the default options.
158 apt_include             | **Optional.** Include only packages matching REGEXP. Can be specified multiple times the values will be combined together.
159 apt_exclude             | **Optional.** Exclude packages matching REGEXP from the list of packages that would otherwise be included. Can be specified multiple times.
160 apt_critical            | **Optional.** If the full package information of any of the upgradable packages match this REGEXP, the plugin will return CRITICAL status. Can be specified multiple times.
161 apt_timeout             | **Optional.** Seconds before plugin times out (default: 10).
162 apt_only_critical       | **Optional.** Only warn about critical upgrades.
163
164
165 ### breeze <a id="plugin-check-command-breeze"></a>
166
167 The [check_breeze](https://www.monitoring-plugins.org/doc/man/check_breeze.html) plugin reports the signal
168 strength of a Breezecom wireless equipment.
169
170 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
171
172 Name             | Description
173 -----------------|---------------------------------
174 breeze_hostname  | **Required.** Name or IP address of host to check. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
175 breeze_community | **Optional.** SNMPv1 community. Defaults to "public".
176 breeze_warning   | **Required.** Percentage strength below which a WARNING status will result. Defaults to 50.
177 breeze_critical  | **Required.** Percentage strength below which a WARNING status will result. Defaults to 20.
178
179
180 ### by_ssh <a id="plugin-check-command-by-ssh"></a>
181
182 The [check_by_ssh](https://www.monitoring-plugins.org/doc/man/check_by_ssh.html) plugin uses SSH to execute
183 commands on a remote host.
184
185 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
186
187 Name            | Description
188 ----------------|--------------
189 by_ssh_address  | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
190 by_ssh_port     | **Optional.** The SSH port. Defaults to 22.
191 by_ssh_command  | **Required.** The command that should be executed. Can be an array if multiple arguments should be passed to `check_by_ssh`.
192 by_ssh_arguments| **Optional.** A dictionary with arguments for the command. This works exactly like the 'arguments' dictionary for ordinary CheckCommands.
193 by_ssh_logname  | **Optional.** The SSH username.
194 by_ssh_identity | **Optional.** The SSH identity.
195 by_ssh_quiet    | **Optional.** Whether to suppress SSH warnings. Defaults to false.
196 by_ssh_warn     | **Optional.** The warning threshold.
197 by_ssh_crit     | **Optional.** The critical threshold.
198 by_ssh_timeout  | **Optional.** The timeout in seconds.
199 by_ssh_options  | **Optional.** Call ssh with '-o OPTION' (multiple options may be specified as an array).
200 by_ssh_ipv4     | **Optional.** Use IPv4 connection. Defaults to false.
201 by_ssh_ipv6     | **Optional.** Use IPv6 connection. Defaults to false.
202
203
204 ### clamd <a id="plugin-check-command-clamd"></a>
205
206 The [check_clamd](https://www.monitoring-plugins.org/doc/man/check_clamd.html) plugin tests CLAMD
207 connections with the specified host (or unix socket).
208
209 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
210
211 Name               | Description
212 -------------------|--------------
213 clamd_address        | **Required.** The host's address or unix socket (must be an absolute path).
214 clamd_port           | **Optional.** Port number (default: none).
215 clamd_expect         | **Optional.** String to expect in server response. Multiple strings must be defined as array.
216 clamd_all            | **Optional.** All expect strings need to occur in server response. Defaults to false.
217 clamd_escape_send    | **Optional.** Enable usage of \\n, \\r, \\t or \\\\ in send string.
218 clamd_send           | **Optional.** String to send to the server.
219 clamd_escape_quit    | **Optional.** Enable usage of \\n, \\r, \\t or \\\\ in quit string.
220 clamd_quit           | **Optional.** String to send server to initiate a clean close of the connection.
221 clamd_refuse         | **Optional.** Accept TCP refusals with states ok, warn, crit. Defaults to crit.
222 clamd_mismatch       | **Optional.** Accept expected string mismatches with states ok, warn, crit. Defaults to warn.
223 clamd_jail           | **Optional.** Hide output from TCP socket.
224 clamd_maxbytes       | **Optional.** Close connection once more than this number of bytes are received.
225 clamd_delay          | **Optional.** Seconds to wait between sending string and polling for response.
226 clamd_certificate    | **Optional.** Minimum number of days a certificate has to be valid. 1st value is number of days for warning, 2nd is critical (if not specified: 0) -- separated by comma.
227 clamd_ssl            | **Optional.** Use SSL for the connection. Defaults to false.
228 clamd_wtime          | **Optional.** Response time to result in warning status (seconds).
229 clamd_ctime          | **Optional.** Response time to result in critical status (seconds).
230 clamd_timeout        | **Optional.** Seconds before connection times out. Defaults to 10.
231 clamd_ipv4           | **Optional.** Use IPv4 connection. Defaults to false.
232 clamd_ipv6           | **Optional.** Use IPv6 connection. Defaults to false.
233
234
235 ### dhcp <a id="plugin-check-command-dhcp"></a>
236
237 The [check_dhcp](https://www.monitoring-plugins.org/doc/man/check_dhcp.html) plugin
238 tests the availability of DHCP servers on a network.
239
240 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
241
242 Name            | Description
243 ----------------|--------------
244 dhcp_serverip   | **Optional.** The IP address of the DHCP server which we should get a response from.
245 dhcp_requestedip| **Optional.** The IP address which we should be offered by a DHCP server.
246 dhcp_timeout    | **Optional.** The timeout in seconds.
247 dhcp_interface  | **Optional.** The interface to use.
248 dhcp_mac        | **Optional.** The MAC address to use in the DHCP request.
249 dhcp_unicast    | **Optional.** Whether to use unicast requests. Defaults to false.
250
251
252 ### dig <a id="plugin-check-command-dig"></a>
253
254 The [check_dig](https://www.monitoring-plugins.org/doc/man/check_dig.html) plugin
255 test the DNS service on the specified host using dig.
256
257 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
258
259 Name                 | Description
260 ---------------------|--------------
261 dig_server           | **Optional.** The DNS server to query. Defaults to "127.0.0.1".
262 dig_port                 | **Optional.** Port number (default: 53).
263 dig_lookup           | **Required.** The address that should be looked up.
264 dig_record_type      | **Optional.** Record type to lookup (default: A).
265 dig_expected_address | **Optional.** An address expected to be in the answer section. If not set, uses whatever was in -l.
266 dig_arguments        | **Optional.** Pass STRING as argument(s) to dig.
267 dig_retries              | **Optional.** Number of retries passed to dig, timeout is divided by this value (Default: 3).
268 dig_warning          | **Optional.** Response time to result in warning status (seconds).
269 dig_critical         | **Optional.** Response time to result in critical status (seconds).
270 dig_timeout          | **Optional.** Seconds before connection times out (default: 10).
271 dig_ipv4             | **Optional.** Force dig to only use IPv4 query transport. Defaults to false.
272 dig_ipv6             | **Optional.** Force dig to only use IPv6 query transport. Defaults to false.
273
274
275 ### disk <a id="plugin-check-command-disk"></a>
276
277 The [check_disk](https://www.monitoring-plugins.org/doc/man/check_disk.html) plugin
278 checks the amount of used disk space on a mounted file system and generates an alert
279 if free space is less than one of the threshold values.
280
281 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
282
283 Name                    | Description
284 --------------------|------------------------
285 disk\_wfree             | **Optional.** The free space warning threshold. Defaults to "20%". If the percent sign is omitted, units from `disk_units` are used.
286 disk\_cfree             | **Optional.** The free space critical threshold. Defaults to "10%". If the percent sign is omitted, units from `disk_units` are used.
287 disk\_inode\_wfree      | **Optional.** The free inode warning threshold.
288 disk\_inode\_cfree      | **Optional.** The free inode critical threshold.
289 disk\_partition         | **Optional.** The partition. **Deprecated in 2.3.**
290 disk\_partition\_excluded  | **Optional.** The excluded partition. **Deprecated in 2.3.**
291 disk\_partitions        | **Optional.** The partition(s). Multiple partitions must be defined as array.
292 disk\_partitions\_excluded | **Optional.** The excluded partition(s). Multiple partitions must be defined as array.
293 disk\_clear             | **Optional.** Clear thresholds. May be true or false.
294 disk\_exact\_match      | **Optional.** For paths or partitions specified with -p, only check for exact paths. May be true or false.
295 disk\_errors\_only      | **Optional.** Display only devices/mountpoints with errors. May be true or false.
296 disk\_ignore\_reserved  | **Optional.** If set, account root-reserved blocks are not accounted for freespace in perfdata. May be true or false.
297 disk\_group             | **Optional.** Group paths. Thresholds apply to (free-)space of all partitions together.
298 disk\_kilobytes         | **Optional.** Same as --units kB. May be true or false.
299 disk\_local             | **Optional.** Only check local filesystems. May be true or false.
300 disk\_stat\_remote\_fs  | **Optional.** Only check local filesystems against thresholds. Yet call stat on remote filesystems to test if they are accessible (e.g. to detect Stale NFS Handles). May be true or false.
301 disk\_mountpoint          | **Optional.** Display the mountpoint instead of the partition. May be true or false.
302 disk\_megabytes           | **Optional.** Same as --units MB. May be true or false.
303 disk\_all                 | **Optional.** Explicitly select all paths. This is equivalent to -R '.\*'. May be true or false.
304 disk\_eregi\_path         | **Optional.** Case insensitive regular expression for path/partition. Multiple regular expression strings must be defined as array.
305 disk\_ereg\_path          | **Optional.** Regular expression for path or partition. Multiple regular expression strings must be defined as array.
306 disk\_ignore\_eregi\_path | **Optional.** Regular expression to ignore selected path/partition (case insensitive). Multiple regular expression strings must be defined as array.
307 disk\_ignore\_ereg\_path  | **Optional.** Regular expression to ignore selected path or partition. Multiple regular expression strings must be defined as array.
308 disk\_timeout             | **Optional.** Seconds before connection times out (default: 10).
309 disk\_units               | **Optional.** Choose bytes, kB, MB, GB, TB (default: MB).
310 disk\_exclude\_type       | **Optional.** Ignore all filesystems of indicated type. Multiple regular expression strings must be defined as array. Defaults to "none", "tmpfs", "sysfs", "proc", "devtmpfs", "devfs", "mtmfs", "tracefs", "cgroup", "fuse.gvfsd-fuse", "fuse.gvfs-fuse-daemon", "fdescfs".
311
312 ### disk_smb <a id="plugin-check-command-disk-smb"></a>
313
314 The [check_disk_smb](https://www.monitoring-plugins.org/doc/man/check_disk_smb.html) plugin
315 uses the `smbclient` binary to check SMB shares.
316
317 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
318
319 Name                    | Description
320 ------------------------|------------------------
321 disk_smb_hostname       | **Required.** NetBIOS name of the server.
322 disk_smb_share          | **Required.** Share name being queried.
323 disk_smb_workgroup      | **Optional.** Workgroup or Domain used (defaults to 'WORKGROUP' if omitted).
324 disk_smb_address        | **Optional.** IP address of the host (only necessary if host belongs to another network).
325 disk_smb_username       | **Optional.** Username for server log-in (defaults to 'guest' if omitted).
326 disk_smb_password       | **Optional.** Password for server log-in (defaults to an empty password if omitted).
327 disk_smb_wused          | **Optional.** The used space warning threshold. Defaults to "85%". If the percent sign is omitted, use optional disk units.
328 disk_smb_cused          | **Optional.** The used space critical threshold. Defaults to "95%". If the percent sign is omitted, use optional disk units.
329 disk_smb_port           | **Optional.** Connection port, e.g. `139` or `445`. Defaults to `smbclient` default if omitted.
330
331 ### dns <a id="plugin-check-command-dns"></a>
332
333 The [check_dns](https://www.monitoring-plugins.org/doc/man/check_dns.html) plugin
334 uses the nslookup program to obtain the IP address for the given host/domain query.
335 An optional DNS server to use may be specified. If no DNS server is specified, the
336 default server(s) specified in `/etc/resolv.conf` will be used.
337
338 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
339
340 Name                 | Description
341 ---------------------|--------------
342 dns_lookup           | **Optional.** The hostname or IP to query the DNS for. Defaults to "$host_name$".
343 dns_server           | **Optional.** The DNS server to query. Defaults to the server configured in the OS.
344 dns_query_type       | **Optional.** The DNS record query type where TYPE =(A, AAAA, SRV, TXT, MX, ANY). The default query type is 'A' (IPv4 host entry)
345 dns_expected_answers | **Optional.** The answer(s) to look for. A hostname must end with a dot. Multiple answers must be defined as array.
346 dns_authoritative    | **Optional.** Expect the server to send an authoritative answer.
347 dns_accept_cname     | **Optional.** Accept cname responses as a valid result to a query.
348 dns_wtime            | **Optional.** Return warning if elapsed time exceeds value.
349 dns_ctime            | **Optional.** Return critical if elapsed time exceeds value.
350 dns_timeout          | **Optional.** Seconds before connection times out. Defaults to 10.
351
352
353 ### dummy <a id="plugin-check-command-dummy"></a>
354
355 The [check_dummy](https://www.monitoring-plugins.org/doc/man/check_dummy.html) plugin
356 will simply return the state corresponding to the numeric value of the `dummy_state`
357 argument with optional text.
358
359 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
360
361 Name            | Description
362 ----------------|--------------
363 dummy_state     | **Optional.** The state. Can be one of 0 (ok), 1 (warning), 2 (critical) and 3 (unknown). Defaults to 0.
364 dummy_text      | **Optional.** Plugin output. Defaults to "Check was successful.".
365
366
367 ### file_age <a id="plugin-check-command-file-age"></a>
368
369 The [check_file_age](https://www.monitoring-plugins.org/doc/man/check_file_age.html) plugin
370 checks a file's size and modification time to make sure it's not empty and that it's sufficiently recent.
371
372 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
373
374 Name                   | Description
375 -----------------------|--------------------------------------------------------------------------------------------------------
376 file_age_file          | **Required.** File to monitor.
377 file_age_warning_time  | **Optional.** File must be no more than this many seconds old as warning threshold. Defaults to "240s".
378 file_age_critical_time | **Optional.** File must be no more than this many seconds old as critical threshold. Defaults to "600s".
379 file_age_warning_size  | **Optional.** File must be at least this many bytes long as warning threshold. No default given.
380 file_age_critical_size | **Optional.** File must be at least this many bytes long as critical threshold. Defaults to "0B".
381 file_age_ignoremissing | **Optional.** Return OK if the file does not exist. Defaults to false.
382
383
384 ### flexlm <a id="plugin-check-command-flexlm"></a>
385
386 The [check_flexlm](https://www.monitoring-plugins.org/doc/man/check_flexlm.html) plugin
387 checks available flexlm license managers. Requires the `lmstat` command.
388
389 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
390
391 Name               | Description
392 -------------------|----------------------------------------------------------
393 flexlm_licensefile | **Required.** Name of license file (usually license.dat).
394 flexlm_timeout     | **Optional.** Plugin time out in seconds. Defaults to 15.
395
396
397 ### fping4 <a id="plugin-check-command-fping4"></a>
398
399 The [check_fping](https://www.monitoring-plugins.org/doc/man/check_fping.html) plugin
400 uses the `fping` command to ping the specified host for a fast check. Note that it is
401 necessary to set the suid flag on fping.
402
403 This CheckCommand expects an IPv4 address.
404
405 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
406
407 Name            | Description
408 ----------------|--------------
409 fping_address   | **Optional.** The host's IPv4 address. Defaults to "$address$".
410 fping_wrta      | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
411 fping_wpl       | **Optional.** The packet loss warning threshold in %. Defaults to 5.
412 fping_crta      | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
413 fping_cpl       | **Optional.** The packet loss critical threshold in %. Defaults to 15.
414 fping_number    | **Optional.** The number of packets to send. Defaults to 5.
415 fping_interval  | **Optional.** The interval between packets in milli-seconds. Defaults to 500.
416 fping_bytes     | **Optional.** The size of ICMP packet.
417 fping_target_timeout | **Optional.** The target timeout in milli-seconds.
418 fping_source_ip | **Optional.** The name or ip address of the source ip.
419 fping_source_interface | **Optional.** The source interface name.
420
421
422 ### fping6 <a id="plugin-check-command-fping6"></a>
423
424 The [check_fping](https://www.monitoring-plugins.org/doc/man/check_fping.html) plugin
425 will use the `fping` command to ping the specified host for a fast check. Note that it is
426 necessary to set the suid flag on fping.
427
428 This CheckCommand expects an IPv6 address.
429
430 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
431
432 Name            | Description
433 ----------------|--------------
434 fping_address   | **Optional.** The host's IPv6 address. Defaults to "$address6$".
435 fping_wrta      | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
436 fping_wpl       | **Optional.** The packet loss warning threshold in %. Defaults to 5.
437 fping_crta      | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
438 fping_cpl       | **Optional.** The packet loss critical threshold in %. Defaults to 15.
439 fping_number    | **Optional.** The number of packets to send. Defaults to 5.
440 fping_interval  | **Optional.** The interval between packets in milli-seconds. Defaults to 500.
441 fping_bytes     | **Optional.** The size of ICMP packet.
442 fping_target_timeout | **Optional.** The target timeout in milli-seconds.
443 fping_source_ip | **Optional.** The name or ip address of the source ip.
444 fping_source_interface | **Optional.** The source interface name.
445
446
447 ### ftp <a id="plugin-check-command-ftp"></a>
448
449 The [check_ftp](https://www.monitoring-plugins.org/doc/man/check_ftp.html) plugin
450 tests FTP connections with the specified host (or unix socket).
451
452 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
453
454 Name               | Description
455 -------------------|--------------
456 ftp_address        | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
457 ftp_port           | **Optional.** The FTP port number.
458 ftp_expect         | **Optional.** String to expect in server response. Multiple strings must be defined as array.
459 ftp_all            | **Optional.** All expect strings need to occur in server response. Defaults to false.
460 ftp_escape_send    | **Optional.** Enable usage of \\n, \\r, \\t or \\\\ in send string.
461 ftp_send           | **Optional.** String to send to the server.
462 ftp_escape_quit    | **Optional.** Enable usage of \\n, \\r, \\t or \\\\ in quit string.
463 ftp_quit           | **Optional.** String to send server to initiate a clean close of the connection.
464 ftp_refuse         | **Optional.** Accept TCP refusals with states ok, warn, crit. Defaults to crit.
465 ftp_mismatch       | **Optional.** Accept expected string mismatches with states ok, warn, crit. Defaults to warn.
466 ftp_jail           | **Optional.** Hide output from TCP socket.
467 ftp_maxbytes       | **Optional.** Close connection once more than this number of bytes are received.
468 ftp_delay          | **Optional.** Seconds to wait between sending string and polling for response.
469 ftp_certificate    | **Optional.** Minimum number of days a certificate has to be valid. 1st value is number of days for warning, 2nd is critical (if not specified: 0) -- separated by comma.
470 ftp_ssl            | **Optional.** Use SSL for the connection. Defaults to false.
471 ftp_wtime          | **Optional.** Response time to result in warning status (seconds).
472 ftp_ctime          | **Optional.** Response time to result in critical status (seconds).
473 ftp_timeout        | **Optional.** Seconds before connection times out. Defaults to 10.
474 ftp_ipv4           | **Optional.** Use IPv4 connection. Defaults to false.
475 ftp_ipv6           | **Optional.** Use IPv6 connection. Defaults to false.
476
477
478 ### game <a id="plugin-check-command-game"></a>
479
480 The [check_game](https://www.monitoring-plugins.org/doc/man/check_game.html) plugin
481 tests game server connections with the specified host.
482 This plugin uses the 'qstat' command, the popular game server status query tool.
483 If you don't have the package installed, you will need to [download](http://www.activesw.com/people/steve/qstat.html)
484 or install the package `quakestat` before you can use this plugin.
485
486 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
487
488 Name               | Description
489 -------------------|-------------------
490 game_game          | **Required.** Name of the game.
491 game_ipaddress     | **Required.** Ipaddress of the game server to query.
492 game_timeout       | **Optional.** Seconds before connection times out. Defaults to 10.
493 game_port          | **Optional.** Port to connect to.
494 game_gamefield     | **Optional.** Field number in raw qstat output that contains game name.
495 game_mapfield      | **Optional.** Field number in raw qstat output that contains map name.
496 game_pingfield     | **Optional.** Field number in raw qstat output that contains ping time.
497 game_gametime      | **Optional.** Field number in raw qstat output that contains game time.
498 game_hostname      | **Optional.** Name of the host running the game.
499
500
501 ### hostalive <a id="plugin-check-command-hostalive"></a>
502
503 Check command object for the [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html)
504 plugin with host check default values. This variant uses the host's `address` attribute
505 if available and falls back to using the `address6` attribute if the `address` attribute is not set.
506
507 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
508
509 Name            | Description
510 ----------------|--------------
511 ping_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
512 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 3000.
513 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 80.
514 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 5000.
515 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 100.
516 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
517 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
518
519
520 ### hostalive4 <a id="plugin-check-command-hostalive4"></a>
521
522 Check command object for the [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html)
523 plugin with host check default values. This variant uses the host's `address` attribute.
524
525 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
526
527 Name            | Description
528 ----------------|--------------
529 ping_address    | **Optional.** The host's IPv4 address. Defaults to "$address$".
530 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 3000.
531 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 80.
532 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 5000.
533 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 100.
534 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
535 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
536
537
538 ### hostalive6 <a id="plugin-check-command-hostalive6"></a>
539
540 Check command object for the [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html)
541 plugin with host check default values. This variant uses the host's `address6` attribute.
542
543 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
544
545 Name            | Description
546 ----------------|--------------
547 ping_address    | **Optional.** The host's IPv6 address. Defaults to "$address6$".
548 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 3000.
549 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 80.
550 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 5000.
551 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 100.
552 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
553 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
554
555
556 ### hpjd <a id="plugin-check-command-hpjd"></a>
557
558 The [check_hpjd](https://www.monitoring-plugins.org/doc/man/check_hpjd.html) plugin
559 tests the state of an HP printer with a JetDirect card. Net-snmp must be installed
560 on the computer running the plugin.
561
562 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
563
564 Name            | Description
565 ----------------|--------------
566 hpjd_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
567 hpjd_port       | **Optional.** The host's SNMP port. Defaults to 161.
568 hpjd_community  | **Optional.** The SNMP community. Defaults  to "public".
569
570
571 ### http <a id="plugin-check-command-http"></a>
572
573 The [check_http](https://www.monitoring-plugins.org/doc/man/check_http.html) plugin
574 tests the HTTP service on the specified host. It can test normal (http) and secure
575 (https) servers, follow redirects, search for strings and regular expressions,
576 check connection times, and report on certificate expiration times.
577
578 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
579
580 Name                             | Description
581 ---------------------------------|---------------------------------
582 http_address                     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
583 http_vhost                       | **Optional.** The virtual host that should be sent in the "Host" header.
584 http_uri                         | **Optional.** The request URI for GET or POST. Defaults to `/`.
585 http_port                        | **Optional.** The TCP port. Defaults to 80 when not using SSL, 443 otherwise.
586 http_ssl                         | **Optional.** Whether to use SSL. Defaults to false.
587 http_ssl_force_tlsv1             | **Optional.** Whether to force TLSv1.
588 http_ssl_force_tlsv1_1           | **Optional.** Whether to force TLSv1.1.
589 http_ssl_force_tlsv1_2           | **Optional.** Whether to force TLSv1.2.
590 http_ssl_force_sslv2             | **Optional.** Whether to force SSLv2.
591 http_ssl_force_sslv3             | **Optional.** Whether to force SSLv3.
592 http_ssl_force_tlsv1_or_higher   | **Optional.** Whether to force TLSv1 or higher.
593 http_ssl_force_tlsv1_1_or_higher | **Optional.** Whether to force TLSv1.1 or higher.
594 http_ssl_force_tlsv1_2_or_higher | **Optional.** Whether to force TLSv1.2 or higher.
595 http_ssl_force_sslv2_or_higher   | **Optional.** Whether to force SSLv2 or higher.
596 http_ssl_force_sslv3_or_higher   | **Optional.** Whether to force SSLv3 or higher.
597 http_sni                         | **Optional.** Whether to use SNI. Defaults to false.
598 http_auth_pair                   | **Optional.** Add 'username:password' authorization pair.
599 http_proxy_auth_pair             | **Optional.** Add 'username:password' authorization pair for proxy.
600 http_ignore_body                 | **Optional.** Don't download the body, just the headers.
601 http_linespan                    | **Optional.** Allow regex to span newline.
602 http_expect_body_regex           | **Optional.** A regular expression which the body must match against. Incompatible with http_ignore_body.
603 http_expect_body_eregi           | **Optional.** A case-insensitive expression which the body must match against. Incompatible with http_ignore_body.
604 http_invertregex                 | **Optional.** Changes behaviour of http_expect_body_regex and http_expect_body_eregi to return CRITICAL if found, OK if not.
605 http_warn_time                   | **Optional.** The warning threshold.
606 http_critical_time               | **Optional.** The critical threshold.
607 http_expect                      | **Optional.** Comma-delimited list of strings, at least one of them is expected in the first (status) line of the server response. Default: HTTP/1.
608 http_certificate                 | **Optional.** Minimum number of days a certificate has to be valid. This parameter explicitely sets the port to 443 and ignores the URL if passed.
609 http_clientcert                  | **Optional.** Name of file contains the client certificate (PEM format).
610 http_privatekey                  | **Optional.** Name of file contains the private key (PEM format).
611 http_headerstring                | **Optional.** String to expect in the response headers.
612 http_string                      | **Optional.** String to expect in the content.
613 http_post                        | **Optional.** URL encoded http POST data.
614 http_method                      | **Optional.** Set http method (for example: HEAD, OPTIONS, TRACE, PUT, DELETE).
615 http_maxage                      | **Optional.** Warn if document is more than seconds old.
616 http_contenttype                 | **Optional.** Specify Content-Type header when POSTing.
617 http_useragent                   | **Optional.** String to be sent in http header as User Agent.
618 http_header                      | **Optional.** Any other tags to be sent in http header.
619 http_extendedperfdata            | **Optional.** Print additional perfdata. Defaults to false.
620 http_onredirect                  | **Optional.** How to handle redirect pages. Possible values: "ok" (default), "warning", "critical", "follow", "sticky" (like follow but stick to address), "stickyport" (like sticky but also to port)
621 http_pagesize                    | **Optional.** Minimum page size required:Maximum page size required.
622 http_timeout                     | **Optional.** Seconds before connection times out.
623 http_ipv4                        | **Optional.** Use IPv4 connection. Defaults to false.
624 http_ipv6                        | **Optional.** Use IPv6 connection. Defaults to false.
625 http_link                        | **Optional.** Wrap output in HTML link. Defaults to false.
626 http_verbose                     | **Optional.** Show details for command-line debugging. Defaults to false.
627
628
629 ### icmp <a id="plugin-check-command-icmp"></a>
630
631 The [check_icmp](https://www.monitoring-plugins.org/doc/man/check_icmp.html) plugin
632 check_icmp allows for checking multiple hosts at once compared to `check_ping`.
633 The main difference is that check_ping executes the system's ping(1) command and
634 parses its output while check_icmp talks ICMP itself. check_icmp must be installed
635 setuid root.
636
637 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
638
639 Name            | Description
640 ----------------|--------------
641 icmp_address    | **Optional.** The host's address. This can either be a single address or an array of addresses. Defaults to "$address$".
642 icmp_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
643 icmp_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 5.
644 icmp_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
645 icmp_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 15.
646 icmp_source     | **Optional.** The source IP address to send packets from.
647 icmp_packets    | **Optional.** The number of packets to send. Defaults to 5.
648 icmp_packet_interval | **Optional** The maximum packet interval. Defaults to 80 (milliseconds).
649 icmp_target_interval | **Optional.** The maximum target interval.
650 icmp_hosts_alive | **Optional.** The number of hosts which have to be alive for the check to succeed.
651 icmp_data_bytes | **Optional.** Payload size for each ICMP request. Defaults to 8.
652 icmp_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 10 (seconds).
653 icmp_ttl        | **Optional.** The TTL on outgoing packets.
654
655
656 ### imap <a id="plugin-check-command-imap"></a>
657
658 The [check_imap](https://www.monitoring-plugins.org/doc/man/check_imap.html) plugin
659 tests IMAP connections with the specified host (or unix socket).
660
661 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
662
663 Name                  | Description
664 ----------------------|--------------
665 imap_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
666 imap_port             | **Optional.** The port that should be checked. Defaults to 143.
667 imap_escape           | **Optional.** Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or quit option. Default: nothing added to send, \\r\\n added to end of quit.
668 imap_send             | **Optional.** String to send to the server.
669 imap_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
670 imap_all              | **Optional.** All expect strings need to occur in server response. Default is any.
671 imap_quit             | **Optional.** String to send server to initiate a clean close of the connection.
672 imap_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
673 imap_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
674 imap_jail             | **Optional.** Hide output from TCP socket.
675 imap_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
676 imap_delay            | **Optional.** Seconds to wait between sending string and polling for response.
677 imap_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
678 imap_ssl              | **Optional.** Use SSL for the connection.
679 imap_warning          | **Optional.** Response time to result in warning status (seconds).
680 imap_critical         | **Optional.** Response time to result in critical status (seconds).
681 imap_timeout          | **Optional.** Seconds before connection times out (default: 10).
682 imap_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
683 imap_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
684
685
686 ### ldap <a id="plugin-check-command-ldap"></a>
687
688 The [check_ldap](https://www.monitoring-plugins.org/doc/man/check_ldap.html) plugin
689 can be used to check LDAP servers.
690
691 The plugin can also be used for monitoring ldaps connections instead of the deprecated `check_ldaps`.
692 This can be ensured by enabling `ldap_starttls` or `ldap_ssl`.
693
694 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
695
696 Name                    | Description
697 ------------------------|--------------
698 ldap_address            | **Optional.** Host name, IP Address, or unix socket (must be an absolute path). Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
699 ldap_port               | **Optional.** Port number. Defaults to 389.
700 ldap_attr               | **Optional.** LDAP attribute to search for (default: "(objectclass=*)"
701 ldap_base               | **Required.** LDAP base (eg. ou=myunit,o=myorg,c=at).
702 ldap_bind               | **Optional.** LDAP bind DN (if required).
703 ldap_pass               | **Optional.** LDAP password (if required).
704 ldap_starttls           | **Optional.** Use STARTSSL mechanism introduced in protocol version 3.
705 ldap_ssl                | **Optional.** Use LDAPS (LDAP v2 SSL method). This also sets the default port to 636.
706 ldap_v2                 | **Optional.** Use LDAP protocol version 2 (enabled by default).
707 ldap_v3                 | **Optional.** Use LDAP protocol version 3 (disabled by default)
708 ldap_warning            | **Optional.** Response time to result in warning status (seconds).
709 ldap_critical           | **Optional.** Response time to result in critical status (seconds).
710 ldap_warning_entries    | **Optional.** Number of found entries to result in warning status.
711 ldap_critical_entries   | **Optional.** Number of found entries to result in critical status.
712 ldap_timeout            | **Optional.** Seconds before connection times out (default: 10).
713 ldap_verbose            | **Optional.** Show details for command-line debugging (disabled by default)
714
715 ### load <a id="plugin-check-command-load"></a>
716
717 The [check_load](https://www.monitoring-plugins.org/doc/man/check_load.html) plugin
718 tests the current system load average.
719
720 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
721
722 Name            | Description
723 ----------------|--------------
724 load_wload1     | **Optional.** The 1-minute warning threshold. Defaults to 5.
725 load_wload5     | **Optional.** The 5-minute warning threshold. Defaults to 4.
726 load_wload15    | **Optional.** The 15-minute warning threshold. Defaults to 3.
727 load_cload1     | **Optional.** The 1-minute critical threshold. Defaults to 10.
728 load_cload5     | **Optional.** The 5-minute critical threshold. Defaults to 6.
729 load_cload15    | **Optional.** The 15-minute critical threshold. Defaults to 4.
730 load_percpu     | **Optional.** Divide the load averages by the number of CPUs (when possible). Defaults to false.
731
732 ### mailq <a id="plugin-check-command-mailq"></a>
733
734 The [check_mailq](https://www.monitoring-plugins.org/doc/man/check_mailq.html) plugin
735 checks the number of messages in the mail queue (supports multiple sendmail queues, qmail).
736
737 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
738
739 Name                    | Description
740 ------------------------|--------------
741 mailq_warning           | **Required.** Min. number of messages in queue to generate warning.
742 mailq_critical          | **Required.** Min. number of messages in queue to generate critical alert ( w < c ).
743 mailq_domain_warning    | **Optional.** Min. number of messages for same domain in queue to generate warning
744 mailq_domain_critical   | **Optional.** Min. number of messages for same domain in queue to generate critical alert ( W < C ).
745 mailq_timeout           | **Optional.** Plugin timeout in seconds (default = 15).
746 mailq_servertype        | **Optional.** [ sendmail \| qmail \| postfix \| exim \| nullmailer ] (default = autodetect).
747 mailq_sudo              | **Optional.** Use sudo to execute the mailq command.
748
749 ### mysql <a id="plugin-check-command-mysql"></a>
750
751 The [check_mysql](https://www.monitoring-plugins.org/doc/man/check_mysql.html) plugin
752 tests connections to a MySQL server.
753
754 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
755
756 Name                    | Description
757 ------------------------|---------------------------------------------------------------
758 mysql_hostname          | **Optional.** Host name, IP Address, or unix socket (must be an absolute path).
759 mysql_port              | **Optional.** Port number (default: 3306).
760 mysql_socket            | **Optional.** Use the specified socket (has no effect if `mysql_hostname` is used).
761 mysql_ignore_auth       | **Optional.** Ignore authentication failure and check for mysql connectivity only.
762 mysql_database          | **Optional.** Check database with indicated name.
763 mysql_file              | **Optional.** Read from the specified client options file.
764 mysql_group             | **Optional.** Use a client options group.
765 mysql_username          | **Optional.** Connect using the indicated username.
766 mysql_password          | **Optional.** Use the indicated password to authenticate the connection.
767 mysql_check_slave       | **Optional.** Check if the slave thread is running properly.
768 mysql_warning           | **Optional.** Exit with WARNING status if slave server is more than INTEGER seconds behind master.
769 mysql_critical          | **Optional.** Exit with CRITICAL status if slave server is more then INTEGER seconds behind master.
770 mysql_ssl               | **Optional.** Use ssl encryptation.
771 mysql_cacert            | **Optional.** Path to CA signing the cert.
772 mysql_cert              | **Optional.** Path to SSL certificate.
773 mysql_key               | **Optional.** Path to private SSL key.
774 mysql_cadir             | **Optional.** Path to CA directory.
775 mysql_ciphers           | **Optional.** List of valid SSL ciphers.
776
777
778 ### mysql_query <a id="plugin-check-command-mysql-query"></a>
779
780 The [check_mysql_query](https://www.monitoring-plugins.org/doc/man/check_mysql_query.html) plugin
781 checks a query result against threshold levels.
782 The result from the query should be numeric. For extra security, create a user with minimal access.
783
784 **Note**: You must specify `mysql_query_password` with an empty string to force an empty password,
785 overriding any my.cnf settings.
786
787 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
788
789 Name                    | Description
790 ------------------------|---------------------------------------------------------------
791 mysql_query_hostname    | **Optional.** Host name, IP Address, or unix socket (must be an absolute path).
792 mysql_query_port        | **Optional.** Port number (default: 3306).
793 mysql_query_database    | **Optional.** Check database with indicated name.
794 mysql_query_file        | **Optional.** Read from the specified client options file.
795 mysql_query_group       | **Optional.** Use a client options group.
796 mysql_query_username    | **Optional.** Connect using the indicated username.
797 mysql_query_password    | **Optional.** Use the indicated password to authenticate the connection.
798 mysql_query_execute     | **Required.** SQL Query to run on the MySQL Server.
799 mysql_query_warning     | **Optional.** Exit with WARNING status if query is outside of the range (format: start:end).
800 mysql_query_critical    | **Optional.** Exit with CRITICAL status if query is outside of the range.
801
802
803 ### negate <a id="plugin-check-command-negate"></a>
804
805 The [negate](https://www.monitoring-plugins.org/doc/man/negate.html) plugin
806 negates the status of a plugin (returns OK for CRITICAL and vice-versa).
807 Additional switches can be used to control which state becomes what.
808
809 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
810
811 Name                    | Description
812 ------------------------|---------------------------------------------------------------
813 negate_timeout          | **Optional.** Seconds before plugin times out (default: 11).
814 negate_timeout_result   | **Optional.** Custom result on Negate timeouts, default to UNKNOWN.
815 negate_ok               | **Optional.** OK, WARNING, CRITICAL or UNKNOWN.
816 negate_warning          |               Numeric values are accepted.
817 negate_critical         |               If nothing is specified, permutes OK and CRITICAL.
818 negate_substitute       | **Optional.** Substitute output text as well. Will only substitute text in CAPITALS.
819 negate_command          | **Required.** Command to be negated.
820 negate_arguments        | **Optional.** Arguments for the negated command.
821
822 ### nrpe <a id="plugin-check-command-nrpe"></a>
823
824 The `check_nrpe` plugin can be used to query an [NRPE](https://docs.icinga.com/latest/en/nrpe.html)
825 server or [NSClient++](https://www.nsclient.org). **Note**: This plugin
826 is considered insecure/deprecated.
827
828 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
829
830 Name            | Description
831 ----------------|--------------
832 nrpe_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
833 nrpe_port       | **Optional.** The NRPE port. Defaults to 5666.
834 nrpe_command    | **Optional.** The command that should be executed.
835 nrpe_no_ssl     | **Optional.** Whether to disable SSL or not. Defaults to `false`.
836 nrpe_timeout_unknown | **Optional.** Whether to set timeouts to unknown instead of critical state. Defaults to `false`.
837 nrpe_timeout    | **Optional.** The timeout in seconds.
838 nrpe_arguments  | **Optional.** Arguments that should be passed to the command. Multiple arguments must be defined as array.
839 nrpe_ipv4       | **Optional.** Use IPv4 connection. Defaults to false.
840 nrpe_ipv6       | **Optional.** Use IPv6 connection. Defaults to false.
841 nrpe_version_2  | **Optional.** Use this if you want to connect using NRPE v2 protocol. Defaults to false.
842
843
844 ### nscp <a id="plugin-check-command-nscp"></a>
845
846 The [check_nt](https://www.monitoring-plugins.org/doc/man/check_nt.html) plugin
847 collects data from the [NSClient++](https://www.nsclient.org) service.
848
849 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
850
851 Name            | Description
852 ----------------|--------------
853 nscp_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
854 nscp_port       | **Optional.** The NSClient++ port. Defaults to 12489.
855 nscp_password   | **Optional.** The NSClient++ password.
856 nscp_variable   | **Required.** The variable that should be checked.
857 nscp_params     | **Optional.** Parameters for the query. Multiple parameters must be defined as array.
858 nscp_warn       | **Optional.** The warning threshold.
859 nscp_crit       | **Optional.** The critical threshold.
860 nscp_timeout    | **Optional.** The query timeout in seconds.
861 nscp_showall    | **Optional.** Use with SERVICESTATE to see working services or PROCSTATE for running processes. Defaults to false.
862
863
864 ### ntp_time <a id="plugin-check-command-ntp-time"></a>
865
866 The [check_ntp_time](https://www.monitoring-plugins.org/doc/man/check_ntp_time.html) plugin
867 checks the clock offset between the local host and a remote NTP server.
868
869 **Note**: If you want to monitor an NTP server, please use `ntp_peer`.
870
871 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
872
873 Name            | Description
874 ----------------|--------------
875 ntp_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
876 ntp_port        | **Optional.** Port number (default: 123).
877 ntp_quiet       | **Optional.** Returns UNKNOWN instead of CRITICAL if offset cannot be found.
878 ntp_warning     | **Optional.** Offset to result in warning status (seconds).
879 ntp_critical    | **Optional.** Offset to result in critical status (seconds).
880 ntp_timeoffset  | **Optional.** Expected offset of the ntp server relative to local server (seconds).
881 ntp_timeout     | **Optional.** Seconds before connection times out (default: 10).
882 ntp_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
883 ntp_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
884
885
886 ### ntp_peer <a id="plugin-check-command-ntp-peer"></a>
887
888 The [check_ntp_peer](https://www.monitoring-plugins.org/doc/man/check_ntp_peer.html) plugin
889 checks the health of an NTP server. It supports checking the offset with the sync peer, the
890 jitter and stratum. This plugin will not check the clock offset between the local host and NTP
891  server; please use `ntp_time` for that purpose.
892
893 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
894
895 Name            | Description
896 ----------------|--------------
897 ntp_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
898 ntp_port        | **Optional.** The port to use. Default to 123.
899 ntp_warning     | **Optional.** Offset to result in warning status (seconds).
900 ntp_critical    | **Optional.** Offset to result in critical status (seconds).
901 ntp_wstratum    | **Optional.** Warning threshold for stratum of server's synchronization peer.
902 ntp_cstratum    | **Optional.** Critical threshold for stratum of server's synchronization peer.
903 ntp_wjitter     | **Optional.** Warning threshold for jitter.
904 ntp_cjitter     | **Optional.** Critical threshold for jitter.
905 ntp_wsource     | **Optional.** Warning threshold for number of usable time sources.
906 ntp_csource     | **Optional.** Critical threshold for number of usable time sources.
907 ntp_timeout     | **Optional.** Seconds before connection times out (default: 10).
908 ntp_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
909 ntp_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
910
911
912 ### passive <a id="plugin-check-command-passive"></a>
913
914 Specialised check command object for passive checks executing the `check_dummy` plugin with appropriate default values.
915
916 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
917
918 Name            | Description
919 ----------------|--------------
920 dummy_state     | **Optional.** The state. Can be one of 0 (ok), 1 (warning), 2 (critical) and 3 (unknown). Defaults to 3.
921 dummy_text      | **Optional.** Plugin output. Defaults to "No Passive Check Result Received.".
922
923 ### pgsql <a id="plugin-check-command-pgsql"></a>
924
925 The [check_pgsql](https://www.monitoring-plugins.org/doc/man/check_pgsql.html) plugin
926 tests a PostgreSQL DBMS to determine whether it is active and accepting queries.
927 If a query is specified using the `pgsql_query` attribute, it will be executed after
928 connecting to the server. The result from the query has to be numeric in order
929 to compare it against the query thresholds if set.
930
931 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
932
933 Name                    | Description
934 ------------------------|---------------------------------------------------------------
935 pgsql_hostname          | **Optional.** Host name, IP Address, or unix socket (must be an absolute path).
936 pgsql_port              | **Optional.** Port number (default: 5432).
937 pgsql_database          | **Optional.** Database to check (default: template1).
938 pgsql_username          | **Optional.** Login name of user.
939 pgsql_password          | **Optional.** Password (BIG SECURITY ISSUE).
940 pgsql_options           | **Optional.** Connection parameters (keyword = value), see below.
941 pgsql_warning           | **Optional.** Response time to result in warning status (seconds).
942 pgsql_critical          | **Optional.** Response time to result in critical status (seconds).
943 pgsql_timeout           | **Optional.** Seconds before connection times out (default: 10).
944 pgsql_query             | **Optional.** SQL query to run. Only first column in first row will be read.
945 pgsql_query_warning     | **Optional.** SQL query value to result in warning status (double).
946 pgsql_query_critical    | **Optional.** SQL query value to result in critical status (double).
947
948 ### ping <a id="plugin-check-command-ping"></a>
949
950 The [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html) plugin
951 uses the ping command to probe the specified host for packet loss (percentage) and
952 round trip average (milliseconds).
953
954 This command uses the host's `address` attribute if available and falls back to using
955 the `address6` attribute if the `address` attribute is not set.
956
957 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
958
959 Name            | Description
960 ----------------|--------------
961 ping_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
962 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
963 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 5.
964 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
965 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 15.
966 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
967 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
968
969
970 ### ping4 <a id="plugin-check-command-ping4"></a>
971
972 The [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html) plugin
973 uses the ping command to probe the specified host for packet loss (percentage) and
974 round trip average (milliseconds).
975
976 This command uses the host's `address` attribute if not explicitely specified using
977 the `ping_address` attribute.
978
979 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
980
981 Name            | Description
982 ----------------|--------------
983 ping_address    | **Optional.** The host's IPv4 address. Defaults to "$address$".
984 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
985 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 5.
986 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
987 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 15.
988 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
989 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
990
991 ### ping6 <a id="plugin-check-command-ping6"></a>
992
993 The [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html) plugin
994 uses the ping command to probe the specified host for packet loss (percentage) and
995 round trip average (milliseconds).
996
997 This command uses the host's `address6` attribute if not explicitely specified using
998 the `ping_address` attribute.
999
1000 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1001
1002 Name            | Description
1003 ----------------|--------------
1004 ping_address    | **Optional.** The host's IPv6 address. Defaults to "$address6$".
1005 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
1006 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 5.
1007 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
1008 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 15.
1009 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
1010 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
1011
1012
1013 ### pop <a id="plugin-check-command-pop"></a>
1014
1015 The [check_pop](https://www.monitoring-plugins.org/doc/man/check_pop.html) plugin
1016 tests POP connections with the specified host (or unix socket).
1017
1018 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1019
1020 Name                 | Description
1021 ---------------------|--------------
1022 pop_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1023 pop_port             | **Optional.** The port that should be checked. Defaults to 110.
1024 pop_escape           | **Optional.** Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or quit option. Default: nothing added to send, \\r\\n added to end of quit.
1025 pop_send             | **Optional.** String to send to the server.
1026 pop_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1027 pop_all              | **Optional.** All expect strings need to occur in server response. Default is any.
1028 pop_quit             | **Optional.** String to send server to initiate a clean close of the connection.
1029 pop_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
1030 pop_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
1031 pop_jail             | **Optional.** Hide output from TCP socket.
1032 pop_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
1033 pop_delay            | **Optional.** Seconds to wait between sending string and polling for response.
1034 pop_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1035 pop_ssl              | **Optional.** Use SSL for the connection.
1036 pop_warning          | **Optional.** Response time to result in warning status (seconds).
1037 pop_critical         | **Optional.** Response time to result in critical status (seconds).
1038 pop_timeout          | **Optional.** Seconds before connection times out (default: 10).
1039 pop_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1040 pop_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1041
1042
1043 ### procs <a id="plugin-check-command-processes"></a>
1044
1045 The [check_procs](https://www.monitoring-plugins.org/doc/man/check_procs.html) plugin
1046 checks all processes and generates WARNING or CRITICAL states if the specified
1047 metric is outside the required threshold ranges. The metric defaults to number
1048 of processes. Search filters can be applied to limit the processes to check.
1049
1050 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1051
1052 Name                 | Description
1053 ---------------------|--------------
1054 procs_warning        | **Optional.** The process count warning threshold. Defaults to 250.
1055 procs_critical       | **Optional.** The process count critical threshold. Defaults to 400.
1056 procs_metric         | **Optional.** Check thresholds against metric.
1057 procs_timeout        | **Optional.** Seconds before plugin times out.
1058 procs_traditional    | **Optional.** Filter own process the traditional way by PID instead of /proc/pid/exe. Defaults to false.
1059 procs_state          | **Optional.** Only scan for processes that have one or more of the status flags you specify.
1060 procs_ppid           | **Optional.** Only scan for children of the parent process ID indicated.
1061 procs_vsz            | **Optional.** Only scan for processes with VSZ higher than indicated.
1062 procs_rss            | **Optional.** Only scan for processes with RSS higher than indicated.
1063 procs_pcpu           | **Optional.** Only scan for processes with PCPU higher than indicated.
1064 procs_user           | **Optional.** Only scan for processes with user name or ID indicated.
1065 procs_argument       | **Optional.** Only scan for processes with args that contain STRING.
1066 procs_argument_regex | **Optional.** Only scan for processes with args that contain the regex STRING.
1067 procs_command        | **Optional.** Only scan for exact matches of COMMAND (without path).
1068 procs_nokthreads     | **Optional.** Only scan for non kernel threads. Defaults to false.
1069
1070
1071 ### radius <a id="plugin-check-command-radius"></a>
1072
1073 The [check_radius](https://www.monitoring-plugins.org/doc/man/check_radius.html) plugin
1074 checks a RADIUS server to see if it is accepting connections.  The server to test
1075 must be specified in the invocation, as well as a user name and password. A configuration
1076 file may also be present. The format of the configuration file is described in the
1077 radiusclient library sources.  The password option presents a substantial security
1078 issue because the password can possibly be determined by careful watching of the
1079 command line in a process listing. This risk is exacerbated because the plugin will
1080 typically be executed at regular predictable intervals. Please be sure that the
1081 password used does not allow access to sensitive system resources.
1082
1083
1084 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1085
1086 Name               | Description
1087 -------------------|--------------
1088 radius_address     | **Optional.** The radius server's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1089 radius_config_file | **Required.** The radius configuration file.
1090 radius_username    | **Required.** The radius username to test.
1091 radius_password    | **Required.** The radius password to test.
1092 radius_port        | **Optional.** The radius port number (default 1645).
1093 radius_nas_id      | **Optional.** The NAS identifier.
1094 radius_nas_address | **Optional.** The NAS IP address.
1095 radius_expect      | **Optional.** The response string to expect from the server.
1096 radius_retries     | **Optional.** The number of times to retry a failed connection.
1097 radius_timeout     | **Optional.** The number of seconds before connection times out (default: 10).
1098
1099
1100 ### simap <a id="plugin-check-command-simap"></a>
1101
1102 The [check_simap](https://www.monitoring-plugins.org/doc/man/check_simap.html) plugin
1103 tests SIMAP connections with the specified host (or unix socket).
1104
1105 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1106
1107 Name                   | Description
1108 -----------------------|--------------
1109 simap_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1110 simap_port             | **Optional.** The port that should be checked. Defaults to 993.
1111 simap_escape           | **Optional.** Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or quit option. Default: nothing added to send, \\r\\n added to end of quit.
1112 simap_send             | **Optional.** String to send to the server.
1113 simap_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1114 simap_all              | **Optional.** All expect strings need to occur in server response. Default is any.
1115 simap_quit             | **Optional.** String to send server to initiate a clean close of the connection.
1116 simap_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
1117 simap_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
1118 simap_jail             | **Optional.** Hide output from TCP socket.
1119 simap_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
1120 simap_delay            | **Optional.** Seconds to wait between sending string and polling for response.
1121 simap_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1122 simap_ssl              | **Optional.** Use SSL for the connection.
1123 simap_warning          | **Optional.** Response time to result in warning status (seconds).
1124 simap_critical         | **Optional.** Response time to result in critical status (seconds).
1125 simap_timeout          | **Optional.** Seconds before connection times out (default: 10).
1126 simap_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1127 simap_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1128
1129 ### smart <a id="plugin-check-command-smart"></a>
1130
1131 The [check_ide_smart](https://www.monitoring-plugins.org/doc/man/check_ide_smart.html) plugin
1132 checks a local hard drive with the (Linux specific) SMART interface. Requires installation of `smartctl`.
1133
1134 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1135
1136 Name            | Description
1137 ----------------|--------------
1138 smart_device    | **Required.** The name of a local hard drive to monitor.
1139
1140
1141 ### smtp <a id="plugin-check-command-smtp"></a>
1142
1143 The [check_smtp](https://www.monitoring-plugins.org/doc/man/check_smtp.html) plugin
1144 will attempt to open an SMTP connection with the host.
1145
1146 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1147
1148 Name                  | Description
1149 ----------------------|--------------
1150 smtp_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1151 smtp_port             | **Optional.** The port that should be checked. Defaults to 25.
1152 smtp_mail_from        | **Optional.** Test a MAIL FROM command with the given email address.
1153 smtp_expect           | **Optional.** String to expect in first line of server response (default: '220').
1154 smtp_command          | **Optional.** SMTP command (may be used repeatedly).
1155 smtp_response         | **Optional.** Expected response to command (may be used repeatedly).
1156 smtp_helo_fqdn        | **Optional.** FQDN used for HELO
1157 smtp_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1158 smtp_starttls         | **Optional.** Use STARTTLS for the connection.
1159 smtp_authtype         | **Optional.** SMTP AUTH type to check (default none, only LOGIN supported).
1160 smtp_authuser         | **Optional.** SMTP AUTH username.
1161 smtp_authpass         | **Optional.** SMTP AUTH password.
1162 smtp_ignore_quit      | **Optional.** Ignore failure when sending QUIT command to server.
1163 smtp_warning          | **Optional.** Response time to result in warning status (seconds).
1164 smtp_critical         | **Optional.** Response time to result in critical status (seconds).
1165 smtp_timeout          | **Optional.** Seconds before connection times out (default: 10).
1166 smtp_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1167 smtp_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1168
1169
1170 ### snmp <a id="plugin-check-command-snmp"></a>
1171
1172 The [check_snmp](https://www.monitoring-plugins.org/doc/man/check_snmp.html) plugin
1173 checks the status of remote machines and obtains system information via SNMP.
1174
1175 **Note**: This plugin uses the `snmpget` command included with the NET-SNMP package.
1176
1177 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1178
1179 Name                | Description
1180 --------------------|--------------
1181 snmp_address        | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1182 snmp_oid            | **Required.** The SNMP OID.
1183 snmp_community      | **Optional.** The SNMP community. Defaults to "public".
1184 snmp_port           | **Optional.** The SNMP port. Defaults to "161".
1185 snmp_retries        | **Optional.** Number of retries to be used in the SNMP requests.
1186 snmp_warn           | **Optional.** The warning threshold.
1187 snmp_crit           | **Optional.** The critical threshold.
1188 snmp_string         | **Optional.** Return OK state if the string matches exactly with the output value
1189 snmp_ereg           | **Optional.** Return OK state if extended regular expression REGEX matches with the output value
1190 snmp_eregi          | **Optional.** Return OK state if case-insensitive extended REGEX matches with the output value
1191 snmp_label          | **Optional.** Prefix label for output value
1192 snmp_invert_search  | **Optional.** Invert search result and return CRITICAL state if found
1193 snmp_units          | **Optional.** Units label(s) for output value (e.g., 'sec.').
1194 snmp_version        | **Optional.** Version to use. E.g. 1, 2, 2c or 3.
1195 snmp_miblist        | **Optional.** MIB's to use, comma separated. Defaults to "ALL".
1196 snmp_rate_multiplier | **Optional.** Converts rate per second. For example, set to 60 to convert to per minute.
1197 snmp_rate           | **Optional.** Boolean. Enable rate calculation.
1198 snmp_getnext        | **Optional.** Boolean. Use SNMP GETNEXT. Defaults to false.
1199 snmp_timeout        | **Optional.** The command timeout in seconds. Defaults to 10 seconds.
1200
1201 ### snmpv3 <a id="plugin-check-command-snmpv3"></a>
1202
1203 Check command object for the [check_snmp](https://www.monitoring-plugins.org/doc/man/check_snmp.html)
1204 plugin, using SNMPv3 authentication and encryption options.
1205
1206 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1207
1208 Name                 | Description
1209 ---------------------|--------------
1210 snmpv3_address       | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1211 snmpv3_getnext       | **Optional.** Use SNMP GETNEXT instead of SNMP GET.
1212 snmpv3_seclevel      | **Optional.** The security level. Defaults to authPriv.
1213 snmpv3_auth_alg      | **Optional.** The authentication algorithm. Defaults to SHA.
1214 snmpv3_user          | **Required.** The username to log in with.
1215 snmpv3_auth_key      | **Required,** The authentication key. Required if `snmpv3_seclevel` is set to `authPriv` otherwise optional.
1216 snmpv3_priv_key      | **Required.** The encryption key.
1217 snmpv3_oid           | **Required.** The SNMP OID.
1218 snmpv3_priv_alg      | **Optional.** The encryption algorithm. Defaults to AES.
1219 snmpv3_warn          | **Optional.** The warning threshold.
1220 snmpv3_crit          | **Optional.** The critical threshold.
1221 snmpv3_string        | **Optional.** Return OK state (for that OID) if STRING is an exact match.
1222 snmpv3_ereg          | **Optional.** Return OK state (for that OID) if extended regular expression REGEX matches.
1223 snmpv3_eregi         | **Optional.** Return OK state (for that OID) if case-insensitive extended REGEX matches.
1224 snmpv3_invert_search | **Optional.** Invert search result and return CRITICAL if found
1225 snmpv3_label         | **Optional.** Prefix label for output value.
1226 snmpv3_units         | **Optional.** Units label(s) for output value (e.g., 'sec.').
1227 snmpv3_rate_multiplier | **Optional.** Converts rate per second. For example, set to 60 to convert to per minute.
1228 snmpv3_rate          | **Optional.** Boolean. Enable rate calculation.
1229 snmpv3_timeout       | **Optional.** The command timeout in seconds. Defaults to 10 seconds.
1230
1231 ### snmp-uptime <a id="plugin-check-command-snmp-uptime"></a>
1232
1233 Check command object for the [check_snmp](https://www.monitoring-plugins.org/doc/man/check_snmp.html)
1234 plugin, using the uptime OID by default.
1235
1236 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1237
1238 Name            | Description
1239 ----------------|--------------
1240 snmp_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1241 snmp_oid        | **Optional.** The SNMP OID. Defaults to "1.3.6.1.2.1.1.3.0".
1242 snmp_community  | **Optional.** The SNMP community. Defaults to "public".
1243
1244
1245 ### spop <a id="plugin-check-command-spop"></a>
1246
1247 The [check_spop](https://www.monitoring-plugins.org/doc/man/check_spop.html) plugin
1248 tests SPOP connections with the specified host (or unix socket).
1249
1250 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1251
1252 Name                  | Description
1253 ----------------------|--------------
1254 spop_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1255 spop_port             | **Optional.** The port that should be checked. Defaults to 995.
1256 spop_escape           | **Optional.** Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or quit option. Default: nothing added to send, \\r\\n added to end of quit.
1257 spop_send             | **Optional.** String to send to the server.
1258 spop_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1259 spop_all              | **Optional.** All expect strings need to occur in server response. Default is any.
1260 spop_quit             | **Optional.** String to send server to initiate a clean close of the connection.
1261 spop_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
1262 spop_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
1263 spop_jail             | **Optional.** Hide output from TCP socket.
1264 spop_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
1265 spop_delay            | **Optional.** Seconds to wait between sending string and polling for response.
1266 spop_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1267 spop_ssl              | **Optional.** Use SSL for the connection.
1268 spop_warning          | **Optional.** Response time to result in warning status (seconds).
1269 spop_critical         | **Optional.** Response time to result in critical status (seconds).
1270 spop_timeout          | **Optional.** Seconds before connection times out (default: 10).
1271 spop_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1272 spop_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1273
1274
1275 ### ssh <a id="plugin-check-command-ssh"></a>
1276
1277 The [check_ssh](https://www.monitoring-plugins.org/doc/man/check_ssh.html) plugin
1278 connects to an SSH server at a specified host and port.
1279
1280 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1281
1282 Name            | Description
1283 ----------------|--------------
1284 ssh_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1285 ssh_port        | **Optional.** The port that should be checked. Defaults to 22.
1286 ssh_timeout     | **Optional.** Seconds before connection times out. Defaults to 10.
1287 ssh_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
1288 ssh_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
1289
1290
1291 ### ssl <a id="plugin-check-command-ssl"></a>
1292
1293 Check command object for the [check_tcp](https://www.monitoring-plugins.org/doc/man/check_tcp.html) plugin,
1294 using ssl-related options.
1295
1296 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1297
1298 Name                          | Description
1299 ------------------------------|--------------
1300 ssl_address                   | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1301 ssl_port                      | **Optional.** The port that should be checked. Defaults to 443.
1302 ssl_timeout                   | **Optional.** Timeout in seconds for the connect and handshake. The plugin default is 10 seconds.
1303 ssl_cert_valid_days_warn      | **Optional.** Warning threshold for days before the certificate will expire. When used, the default for ssl_cert_valid_days_critical is 0.
1304 ssl_cert_valid_days_critical  | **Optional.** Critical threshold for days before the certificate will expire. When used, ssl_cert_valid_days_warn must also be set.
1305 ssl_sni                       | **Optional.** The `server_name` that is send to select the SSL certificate to check. Important if SNI is used. Defaults to "$ssl_address$".
1306
1307
1308 ### ssmtp <a id="plugin-check-command-ssmtp"></a>
1309
1310 The [check_ssmtp](https://www.monitoring-plugins.org/doc/man/check_ssmtp.html) plugin
1311 tests SSMTP connections with the specified host (or unix socket).
1312
1313 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1314
1315 Name                   | Description
1316 -----------------------|--------------
1317 ssmtp_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1318 ssmtp_port             | **Optional.** The port that should be checked. Defaults to 465.
1319 ssmtp_escape           | **Optional.** Can use \\n, \\r, \\t or \\ in send or quit string. Must come before send or quit option. Default: nothing added to send, \\r\\n added to end of quit.
1320 ssmtp_send             | **Optional.** String to send to the server.
1321 ssmtp_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1322 ssmtp_all              | **Optional.** All expect strings need to occur in server response. Default is any.
1323 ssmtp_quit             | **Optional.** String to send server to initiate a clean close of the connection.
1324 ssmtp_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
1325 ssmtp_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
1326 ssmtp_jail             | **Optional.** Hide output from TCP socket.
1327 ssmtp_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
1328 ssmtp_delay            | **Optional.** Seconds to wait between sending string and polling for response.
1329 ssmtp_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1330 ssmtp_ssl              | **Optional.** Use SSL for the connection.
1331 ssmtp_warning          | **Optional.** Response time to result in warning status (seconds).
1332 ssmtp_critical         | **Optional.** Response time to result in critical status (seconds).
1333 ssmtp_timeout          | **Optional.** Seconds before connection times out (default: 10).
1334 ssmtp_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1335 ssmtp_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1336
1337
1338 ### swap <a id="plugin-check-command-swap"></a>
1339
1340 The [check_swap](https://www.monitoring-plugins.org/doc/man/check_swap.html) plugin
1341 checks the swap space on a local machine.
1342
1343 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1344
1345 Name            | Description
1346 ----------------|--------------
1347 swap_wfree      | **Optional.** The free swap space warning threshold in % (enable `swap_integer` for number values). Defaults to `50%`.
1348 swap_cfree      | **Optional.** The free swap space critical threshold in % (enable `swap_integer` for number values). Defaults to `25%`.
1349 swap_integer    | **Optional.** Specifies whether the thresholds are passed as number or percent value. Defaults to false (percent values).
1350 swap_allswaps   | **Optional.** Conduct comparisons for all swap partitions, one by one. Defaults to false.
1351 swap_noswap     | **Optional.** Resulting state when there is no swap regardless of thresholds. Possible values are "ok", "warning", "critical", "unknown". Defaults to "critical".
1352
1353
1354 ### tcp <a id="plugin-check-command-tcp"></a>
1355
1356 The [check_tcp](https://www.monitoring-plugins.org/doc/man/check_tcp.html) plugin
1357 tests TCP connections with the specified host (or unix socket).
1358
1359 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1360
1361 Name            | Description
1362 ----------------|--------------
1363 tcp_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1364 tcp_port        | **Required.** The port that should be checked.
1365 tcp_expect      | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1366 tcp_all         | **Optional.** All expect strings need to occur in server response. Defaults to false.
1367 tcp_escape_send | **Optional.** Enable usage of \\n, \\r, \\t or \\\\ in send string.
1368 tcp_send        | **Optional.** String to send to the server.
1369 tcp_escape_quit | **Optional.** Enable usage of \\n, \\r, \\t or \\\\ in quit string.
1370 tcp_quit        | **Optional.** String to send server to initiate a clean close of the connection.
1371 tcp_refuse      | **Optional.** Accept TCP refusals with states ok, warn, crit. Defaults to crit.
1372 tcp_mismatch    | **Optional.** Accept expected string mismatches with states ok, warn, crit. Defaults to warn.
1373 tcp_jail        | **Optional.** Hide output from TCP socket.
1374 tcp_maxbytes    | **Optional.** Close connection once more than this number of bytes are received.
1375 tcp_delay       | **Optional.** Seconds to wait between sending string and polling for response.
1376 tcp_certificate | **Optional.** Minimum number of days a certificate has to be valid. 1st value is number of days for warning, 2nd is critical (if not specified: 0) -- separated by comma.
1377 tcp_ssl         | **Optional.** Use SSL for the connection. Defaults to false.
1378 tcp_wtime       | **Optional.** Response time to result in warning status (seconds).
1379 tcp_ctime       | **Optional.** Response time to result in critical status (seconds).
1380 tcp_timeout     | **Optional.** Seconds before connection times out. Defaults to 10.
1381 tcp_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
1382 tcp_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
1383
1384
1385 ### udp <a id="plugin-check-command-udp"></a>
1386
1387 The [check_udp](https://www.monitoring-plugins.org/doc/man/check_udp.html) plugin
1388 tests UDP connections with the specified host (or unix socket).
1389
1390 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1391
1392 Name            | Description
1393 ----------------|--------------
1394 udp_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1395 udp_port        | **Required.** The port that should be checked.
1396 udp_send        | **Required.** The payload to send in the UDP datagram.
1397 udp_expect      | **Required.** The payload to expect in the response datagram.
1398 udp_quit        | **Optional.** The payload to send to 'close' the session.
1399 udp_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
1400 udp_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
1401
1402
1403 ### ups <a id="plugin-check-command-ups"></a>
1404
1405 The [check_ups](https://www.monitoring-plugins.org/doc/man/check_ups.html) plugin
1406 tests the UPS service on the specified host. [Network UPS Tools](http://www.networkupstools.org)
1407  must be running for this plugin to work.
1408
1409 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1410
1411 Name            | Description
1412 ----------------|--------------
1413 ups_address     | **Required.** The address of the host running upsd. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1414 ups_name        | **Required.** The UPS name. Defaults to `ups`.
1415 ups_port        | **Optional.** The port to which to connect. Defaults to 3493.
1416 ups_variable    | **Optional.** The variable to monitor. Must be one of LINE, TEMP, BATTPCT or LOADPCT. If this is not set, the check only relies on the value of `ups.status`.
1417 ups_warning     | **Optional.** The warning threshold for the selected variable.
1418 ups_critical    | **Optional.** The critical threshold for the selected variable.
1419 ups_celsius     | **Optional.** Display the temperature in degrees Celsius instead of Fahrenheit. Defaults to `false`.
1420 ups_timeout     | **Optional.** The number of seconds before the connection times out. Defaults to 10.
1421
1422
1423 ### users <a id="plugin-check-command-users"></a>
1424
1425 The [check_users](https://www.monitoring-plugins.org/doc/man/check_users.html) plugin
1426 checks the number of users currently logged in on the local system and generates an
1427 error if the number exceeds the thresholds specified.
1428
1429 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1430
1431 Name            | Description
1432 ----------------|--------------
1433 users_wgreater  | **Optional.** The user count warning threshold. Defaults to 20.
1434 users_cgreater  | **Optional.** The user count critical threshold. Defaults to 50.
1435
1436
1437
1438 ## Windows Plugins for Icinga 2 <a id="windows-plugins"></a>
1439
1440 To allow a basic monitoring of Windows clients Icinga 2 comes with a set of Windows only plugins. While trying to mirror the functionalities of their linux cousins from the monitoring-plugins package, the differences between Windows and Linux are too big to be able use the same CheckCommands for both systems.
1441
1442 A check-commands-windows.conf comes with Icinga 2, it asumes that the Windows Plugins are installed in the PluginDir set in your constants.conf. To enable them the following include directive is needed in you icinga2.conf:
1443
1444         include <windows-plugins>
1445
1446 One of the differences between the Windows plugins and their linux counterparts is that they consistently do not require thresholds to run, functioning like dummies without.
1447
1448
1449 ### Threshold syntax <a id="windows-plugins-thresholds"></a>
1450
1451 So not specified differently the thresholds for the plugins all follow the same pattern
1452
1453 Threshold    | Meaning
1454 :------------|:----------
1455 "29"         | The threshold is 29.
1456 "!29"        | The threshold is 29, but the negative of the result is returned.
1457 "[10-40]"    | The threshold is a range from (including) 20 to 40, a value inside means the threshold has been exceeded.
1458 "![10-40]"   | Same as above, but the result is inverted.
1459
1460
1461 ### disk-windows <a id="windows-plugins-disk-windows"></a>
1462
1463 Check command object for the `check_disk.exe` plugin.
1464 Aggregates the disk space of all volumes and mount points it can find, or the ones defined in `disk_win_path`. Ignores removable storage like fash drives and discs (CD, DVD etc.).
1465 The data collection is instant and free disk space (default, see `disk_win_show_used`) is used for threshold computation.
1466
1467 > **Note**
1468 >
1469 > Percentage based thresholds can be used by adding a '%' to the threshold
1470 > value.
1471
1472 Custom attributes:
1473
1474 Name                  | Description
1475 :---------------------|:------------
1476 disk\_win\_warn       | **Optional**. The warning threshold.
1477 disk\_win\_crit       | **Optional**. The critical threshold.
1478 disk\_win\_path       | **Optional**. Check only these paths, default checks all.
1479 disk\_win\_unit       | **Optional**. Use this unit to display disk space, thresholds are interpreted in this unit. Defaults to "mb", possible values are: b, kb, mb, gb and tb.
1480 disk\_win\_exclude    | **Optional**. Exclude these drives from check.
1481 disk\_win\_show\_used | **Optional**. Use used instead of free space.
1482
1483 ### load-windows <a id="windows-plugins-load-windows"></a>
1484
1485 Check command object for the `check_load.exe` plugin.
1486 This plugin collects the inverse of the performance counter `\Processor(_Total)\% Idle Time` two times, with a wait time of one second between the collection. To change this wait time use [`perfmon-windows`](10-icinga-template-library.md#windows-plugins-load-windows).
1487
1488 Custom attributes:
1489
1490 Name            | Description
1491 :---------------|:------------
1492 load\_win\_warn | **Optional**. The warning threshold.
1493 load\_win\_crit | **Optional**. The critical threshold.
1494
1495
1496 ### memory-windows <a id="windows-plugins-memory-windows"></a>
1497
1498 Check command object for the `check_memory.exe` plugin.
1499 The memory collection is instant and free memory is used for threshold computation.
1500
1501 > **Note**
1502 >
1503 > Percentage based thresholds can be used by adding a '%' to the threshold
1504 > value. Keep in mind that memory\_win\_unit is applied before the
1505 > value is calculated.
1506
1507 Custom attributes:
1508
1509 Name              | Description
1510 :-----------------|:------------
1511 memory\_win\_warn | **Optional**. The warning threshold.
1512 memory\_win\_crit | **Optional**. The critical threshold.
1513 memory\_win\_unit | **Optional**. The unit to display the received value in, thresholds are interpreted in this unit. Defaults to "mb" (megabye), possible values are: b, kb, mb, gb and tb.
1514
1515
1516 ### network-windows <a id="windows-plugins-network-windows"></a>
1517
1518 Check command object for the `check_network.exe` plugin.
1519 Collects the total Bytes inbount and outbound for all interfaces in one second, to itemise interfaces or use a different collection interval use [`perfmon-windows`](10-icinga-template-library.md#windows-plugins-load-windows).
1520
1521 Custom attributes:
1522
1523 Name                | Description
1524 :-------------------|:------------
1525 network\_win\_warn  | **Optional**. The warning threshold.
1526 network\_win\_crit  | **Optional**. The critical threshold.
1527 network\_no\_isatap | **Optional**. Do not print ISATAP interfaces.
1528
1529
1530 ### perfmon-windows <a id="windows-plugins-perfmon-windows"></a>
1531
1532 Check command object for the `check_perfmon.exe` plugin.
1533 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`.
1534
1535 To recieve a list of possible Performance Counter Objects run `check_perfmon.exe --print-objects` and to view an objects instances and counters run `check_perfmon.exe --print-object-info -P "name of object"`
1536
1537 Custom attributes:
1538
1539 Name                  | Description
1540 :---------------------|:------------
1541 perfmon\_win\_warn    | **Optional**. The warning threshold.
1542 perfmon\_win\_crit    | **Optional**. The critical threshold.
1543 perfmon\_win\_counter | **Required**. The Performance Counter to use. Ex. `\Processor(_Total)\% Idle Time`.
1544 perfmon\_win\_wait    | **Optional**. Time in milliseconds to wait between data collection (default: 1000).
1545 perfmon\_win\_type    | **Optional**. Format in which to expect perfomance values. Possible are: long, int64 and double (default).
1546 perfmon\_win\_syntax  | **Optional**. Use this in the performance output instead of `perfmon\_win\_counter`. Exists for graphice compatibility reasons.
1547
1548
1549 ### ping-windows <a id="windows-plugins-ping-windows"></a>
1550
1551 Check command object for the `check_ping.exe` plugin.
1552 ping-windows should automaticly detect whether `ping_win_address` is an IPv4 or IPv6 address. If not, use ping4-windows and ping6-windows. Also note that check\_ping.exe waits at least `ping_win_timeout` milliseconds between the pings.
1553
1554 Custom attributes:
1555
1556 Name               | Description
1557 :------------------|:------------
1558 ping\_win\_warn    | **Optional**. The warning threshold. RTA and package loss separated by comma.
1559 ping\_win\_crit    | **Optional**. The critical threshold. RTA and package loss separated by comma.
1560 ping\_win\_address | **Required**. An IPv4 or IPv6 address
1561 ping\_win\_packets | **Optional**. Number of packages to send. Default: 5.
1562 ping\_win\_timeout | **Optional**. The timeout in milliseconds. Default: 1000
1563
1564
1565 ### procs-windows <a id="windows-plugins-procs-windows"></a>
1566
1567 Check command object for `check_procs.exe` plugin.
1568 When useing `procs_win_user` this plugins needs adminstratice privileges to access the processes of other users, to just enumerate them no additional privileges are required.
1569
1570 Custom attributes:
1571
1572 Name             | Description
1573 :----------------|:------------
1574 procs\_win\_warn | **Optional**. The warning threshold.
1575 procs\_win\_crit | **Optional**. The critical threshold.
1576 procs\_win\_user | **Optional**. Count this useres processes.
1577
1578
1579 ### service-windows <a id="windows-plugins-service-windows"></a>
1580
1581 Check command object for `check_service.exe` plugin.
1582 This checks thresholds work different since the binary decision whether a service is running or not does not allow for three states. As a default `check_service.exe` will return CRITICAL when `service_win_service` is not running, the `service_win_warn` flag changes this to WARNING.
1583
1584 Custom attributes:
1585
1586 Name                  | Description
1587 :---------------------|:------------
1588 service\_win\_warn    | **Optional**. Warn when service is not running.
1589 service\_win\_service | **Required**. The critical threshold.
1590
1591
1592 ### swap-windows <a id="windows-plugins-swap-windows"></a>
1593
1594 Check command object for `check_swap.exe` plugin.
1595 The data collection is instant.
1596
1597 Custom attributes:
1598
1599 Name            | Description
1600 :---------------|:------------
1601 swap\_win\_warn | **Optional**. The warning threshold.
1602 swap\_win\_crit | **Optional**. The critical threshold.
1603 swap\_win\_unit | **Optional**. The unit to display the received value in, thresholds are interpreted in this unit. Defaults to "mb" (megabyte).
1604
1605
1606 ### update-windows <a id="windows-plugins-update-windows"></a>
1607
1608 Check command object for `check_update.exe` plugin.
1609 Querying Microsoft for Windows updates can take multiple seconds to minutes. An update is treated as important when it has the WSUS flag for SecurityUpdates or CriticalUpdates.
1610
1611 > **Note**
1612 >
1613 > The Network Services Account which runs Icinga 2 by default does not have the required
1614 > permissions to run this check.
1615
1616 Custom attributes:
1617
1618 Name                | Description
1619 :-------------------|:------------
1620 update\_win\_warn   | **Optional**. If set, returns warning when important updates are available.
1621 update\_win\_crit   | **Optional**. If set, return critical when important updates that require a reboot are available.
1622 update\_win\_reboot | **Optional**. Set to treat 'may need update' as 'definitely needs update'. Please Note that this is true for almost every update and is therefore not recommended.
1623
1624
1625 In contrast to most other plugins, the values of check_update's custom attributes do not set thresholds, but just enable/disable the behaviour described in the table above.  
1626 It can be enabled/disabled for example by setting them to "true" or "false", "1" or "0" would also work.  
1627 Thresholds will always be "1".
1628
1629 > **Note**
1630 >
1631 > If they are enabled, performance data will be shown in the webinterface.  
1632 > If run without the optional parameters, the plugin will output critical if any important updates are available.  
1633
1634
1635 ### uptime-windows <a id="windows-plugins-uptime-windows"></a>
1636
1637 Check command opject for `check_uptime.exe` plugin.
1638 Uses GetTickCount64 to get the uptime, so boot time is not included.
1639
1640 Custom attributes:
1641
1642 Name              | Description
1643 :-----------------|:------------
1644 uptime\_win\_warn | **Optional**. The warning threshold.
1645 uptime\_win\_crit | **Optional**. The critical threshold.
1646 uptime\_win\_unit | **Optional**. The unit to display the received value in, thresholds are interpreted in this unit. Defaults to "s"(seconds), possible values are ms (milliseconds), s, m (minutes), h (hours).
1647
1648
1649 ### users-windows <a id="windows-plugins-users-windows"></a>
1650
1651 Check command object for `check_users.exe` plugin.
1652
1653 Custom attributes:
1654
1655 Name             | Description
1656 :----------------|:------------
1657 users\_win\_warn | **Optional**. The warning threshold.
1658 users\_win\_crit | **Optional**. The critical threshold.
1659
1660
1661 ## Plugin Check Commands for NSClient++ <a id="nscp-plugin-check-commands"></a>
1662
1663 There are two methods available for querying NSClient++:
1664
1665 * Query the [HTTP API](10-icinga-template-library.md#nscp-check-api) locally or remotely (requires a running NSClient++ service)
1666 * Run a [local CLI check](10-icinga-template-library.md#nscp-check-local) (does not require NSClient++ as a service)
1667
1668 Both methods have their advantages and disadvantages. One thing to
1669 note: If you rely on performance counter delta calculations such as
1670 CPU utilization, please use the HTTP API instead of the CLI sample call.
1671
1672 ### nscp_api <a id="nscp-check-api"></a>
1673
1674 `check_nscp_api` is part of the Icinga 2 plugins. This plugin is available for
1675 both, Windows and Linux/Unix.
1676
1677 Verify that the ITL CheckCommand is included in the [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf) configuration file:
1678
1679     vim /etc/icinga2/icinga2.conf
1680
1681     include <plugins>
1682
1683 `check_nscp_api` runs queries against the NSClient++ API. Therefore NSClient++ needs to have
1684 the `webserver` module enabled, configured and loaded.
1685
1686 You can install the webserver using the following CLI commands:
1687
1688     ./nscp.exe web install
1689     ./nscp.exe web password — –set icinga
1690
1691 Now you can define specific [queries](https://docs.nsclient.org/reference/check/CheckHelpers.html#queries)
1692 and integrate them into Icinga 2.
1693
1694 The check plugin `check_nscp_api` can be integrated with the `nscp_api` CheckCommand object:
1695
1696 Custom attributes:
1697
1698 Name                   | Description
1699 :----------------------|:----------------------
1700 nscp\_api\_host       | **Required**. NSCP API host address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1701 nscp\_api\_port       | **Optional**. NSCP API port. Defaults to `8443`.
1702 nscp\_api\_password   | **Required**. NSCP API password. Please check the NSCP documentation for setup details.
1703 nscp\_api\_query      | **Required**. NSCP API query endpoint. Refer to the NSCP documentation for possible values.
1704 nscp\_api\_arguments  | **Optional**. NSCP API arguments dictionary either as single strings or key-value pairs using `=`. Refer to the NSCP documentation.
1705
1706 `nscp_api_arguments` can be used to pass required thresholds to the executed check. The example below
1707 checks the CPU utilization and specifies warning and critical thresholds.
1708
1709 ```
1710 check_nscp_api --host 10.0.10.148 --password icinga --query check_cpu --arguments show-all warning='load>40' critical='load>30'
1711 check_cpu CRITICAL: critical(5m: 48%, 1m: 36%), 5s: 0% | 'total 5m'=48%;40;30 'total 1m'=36%;40;30 'total 5s'=0%;40;30
1712 ```
1713
1714
1715 ### nscp-local <a id="nscp-check-local"></a>
1716
1717 Icinga 2 can use the `nscp client` command to run arbitrary NSClient++ checks locally on the client.
1718
1719 You can enable these check commands by adding the following the include directive in your
1720 [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf) configuration file:
1721
1722     include <nscp>
1723
1724 You can also optionally specify an alternative installation directory for NSClient++ by adding
1725 the NscpPath constant in your [constants.conf](04-configuring-icinga-2.md#constants-conf) configuration
1726 file:
1727
1728     const NscpPath = "C:\\Program Files (x86)\\NSClient++"
1729
1730 By default Icinga 2 uses the Microsoft Installer API to determine where NSClient++ is installed. It should
1731 not be necessary to manually set this constant.
1732
1733 Note that it is not necessary to run NSClient++ as a Windows service for these commands to work.
1734
1735 The check command object for NSClient++ is available as `nscp-local`.
1736
1737 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1738
1739 Name            | Description
1740 ----------------|--------------
1741 nscp_log_level  | **Optional.** The log level. Defaults to "critical".
1742 nscp_load_all   | **Optional.** Whether to load all modules. Defaults to false.
1743 nscp_modules    | **Optional.** An array of NSClient++ modules to load. Defaults to `[ "CheckSystem" ]`.
1744 nscp_boot       | **Optional.** Whether to use the --boot option. Defaults to true.
1745 nscp_query      | **Required.** The NSClient++ query. Try `nscp client -q x` for a list.
1746 nscp_arguments  | **Optional.** An array of query arguments.
1747 nscp_showall    | **Optional.** Shows more details in plugin output, default to false.
1748
1749 ### nscp-local-cpu <a id="nscp-check-local-cpu"></a>
1750
1751 Check command object for the `check_cpu` NSClient++ plugin.
1752
1753 Name                | Description
1754 --------------------|------------------
1755 nscp_cpu_time       | **Optional.** Calculate avarage usage for the given time intervals. Value has to be an array, default to [ "1m", "5m", "15m" ].
1756 nscp_cpu_warning    | **Optional.** Threshold for WARNING state in percent, default to 80.
1757 nscp_cpu_critical   | **Optional.** Threshold for CRITICAL state in percent, default to 90.
1758 nscp_cpu_arguments  | **Optional.** Additional arguments.
1759 nscp_cpu_showall    | **Optional.** Shows more details in plugin output, default to false.
1760
1761 ### nscp-local-memory <a id="nscp-check-local-memory"></a>
1762
1763 Check command object for the `check_memory` NSClient++ plugin.
1764
1765 Name                  | Description
1766 ----------------------|------------------
1767 nscp_memory_committed | **Optional.** Check for committed memory, default to false.
1768 nscp_memory_physical  | **Optional.** Check for physical memory, default to true.
1769 nscp_memory_free      | **Optional.** Switch between checking free (true) or used memory (false), default to false.
1770 nscp_memory_warning   | **Optional.** Threshold for WARNING state in percent or absolut (use MB, GB, ...), default to 80 (free=false) or 20 (free=true).
1771 nscp_memory_critical  | **Optional.** Threshold for CRITICAL state in percent or absolut (use MB, GB, ...), default to 90 (free=false) or 10 (free=true).
1772 nscp_memory_arguments | **Optional.** Additional arguments.
1773 nscp_memory_showall   | **Optional.** Shows more details in plugin output, default to false.
1774
1775 ### nscp-local-os-version <a id="nscp-check-local-os-version"></a>
1776
1777 Check command object for the `check_os_version` NSClient++ plugin.
1778
1779 This command has the same custom attributes like the `nscp-local` check command.
1780
1781 ### nscp-local-pagefile <a id="nscp-check-local-pagefile"></a>
1782
1783 Check command object for the `check_pagefile` NSClient++ plugin.
1784
1785 This command has the same custom attributes like the `nscp-local` check command.
1786
1787 ### nscp-local-process <a id="nscp-check-local-process"></a>
1788
1789 Check command object for the `check_process` NSClient++ plugin.
1790
1791 This command has the same custom attributes like the `nscp-local` check command.
1792
1793 ### nscp-local-service <a id="nscp-check-local-service"></a>
1794
1795 Check command object for the `check_service` NSClient++ plugin.
1796
1797 Name                   | Description
1798 -----------------------|------------------
1799 nscp_service_name      | **Required.** Name of service to check.
1800 nscp_service_type      | **Optional.** Type to check, default to state.
1801 nscp_service_ok        | **Optional.** State for return an OK, i.e. for type=state running, stopped, ...
1802 nscp_service_otype     | **Optional.** Dedicate type for nscp_service_ok, default to nscp_service_state.
1803 nscp_service_warning   | **Optional.** State for return an WARNING.
1804 nscp_service_wtype     | **Optional.** Dedicate type for nscp_service_warning, default to nscp_service_state.
1805 nscp_service_critical  | **Optional.** State for return an CRITICAL.
1806 nscp_service_ctype     | **Optional.** Dedicate type for nscp_service_critical, default to nscp_service_state.
1807 nscp_service_arguments | **Optional.** Additional arguments.
1808 nscp_service_showall   | **Optional.** Shows more details in plugin output, default to true.
1809
1810 ### nscp-local-uptime <a id="nscp-check-local-uptime"></a>
1811
1812 Check command object for the `check_uptime` NSClient++ plugin.
1813
1814 This command has the same custom attributes like the `nscp-local` check command.
1815
1816 ### nscp-local-version <a id="nscp-check-local-version"></a>
1817
1818 Check command object for the `check_version` NSClient++ plugin.
1819
1820 This command has the same custom attributes like the `nscp-local` check command.
1821 In addition to that the default value for `nscp_modules` is set to `[ "CheckHelpers" ]`.
1822
1823 ### nscp-local-disk <a id="nscp-check-local-disk"></a>
1824
1825 Check command object for the `check_drivesize` NSClient++ plugin.
1826
1827 Name                   | Description
1828 -----------------------|------------------
1829 nscp_disk_drive        | **Optional.** Drive character, default to all drives.
1830 nscp_disk_free         | **Optional.** Switch between checking free space (free=true) or used space (free=false), default to false.
1831 nscp_disk_warning      | **Optional.** Threshold for WARNING in percent or absolut (use MB, GB, ...), default to 80 (used) or 20 percent (free).
1832 nscp_disk_critical     | **Optional.** Threshold for CRITICAL in percent or absolut (use MB, GB, ...), default to 90 (used) or 10 percent (free).
1833 nscp_disk_arguments    | **Optional.** Additional arguments.
1834 nscp_disk_showall      | **Optional.** Shows more details in plugin output, default to true.
1835 nscp_modules           | **Optional.** An array of NSClient++ modules to load. Defaults to `[ "CheckDisk" ]`.
1836
1837 ### nscp-local-counter <a id="nscp-check-local-counter"></a>
1838
1839 Check command object for the `check_pdh` NSClient++ plugin.
1840
1841 Name                   | Description
1842 -----------------------|------------------
1843 nscp_counter_name      | **Required.** Performance counter name.
1844 nscp_counter_warning   | **Optional.** WARNING Threshold.
1845 nscp_counter_critical  | **Optional.** CRITICAL Threshold.
1846 nscp_counter_arguments | **Optional.** Additional arguments.
1847 nscp_counter_showall   | **Optional.** Shows more details in plugin output, default to false.
1848 nscp_counter_perfsyntax | **Optional.** Apply performance data label, e.g. `Total Processor Time` to avoid special character problems. Defaults to `nscp_counter_name`.
1849
1850
1851
1852 ## Plugin Check Commands for Manubulon SNMP <a id="snmp-manubulon-plugin-check-commands"></a>
1853
1854 The `SNMP Manubulon Plugin Check Commands` provide configuration for plugin check
1855 commands provided by the [SNMP Manubulon project](http://nagios.manubulon.com/index_snmp.html).
1856
1857 **Note:** Some plugin parameters are only available in Debian packages or in a
1858 [forked repository](https://github.com/dnsmichi/manubulon-snmp) with patches applied.
1859
1860 The SNMP manubulon plugin check commands assume that the global constant named `ManubulonPluginDir`
1861 is set to the path where the Manubublon SNMP plugins are installed.
1862
1863 You can enable these plugin check commands by adding the following the include directive in your
1864 [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf) configuration file:
1865
1866     include <manubulon>
1867
1868 ### Checks by Host Type
1869
1870 **N/A**      : Not available for this type.
1871
1872 **SNMP**     : Available for simple SNMP query.
1873
1874 **??**       : Untested.
1875
1876 **Specific** : Script name for platform specific checks.
1877
1878
1879   Host type               | Interface  | storage  | load/cpu  | mem | process  | env | specific
1880   ------------------------|------------|----------|-----------|-----|----------|-----|-------------------------
1881   Linux                   |   Yes      |   Yes    |   Yes     | Yes |   Yes    | No  |
1882   Windows                 |   Yes      |   Yes    |   Yes     | Yes |   Yes    | No  | check_snmp_win.pl
1883   Cisco router/switch     |   Yes      |   N/A    |   Yes     | Yes |   N/A    | Yes |
1884   HP router/switch        |   Yes      |   N/A    |   Yes     | Yes |   N/A    | No  |
1885   Bluecoat proxy          |   Yes      |   SNMP   |   Yes     | SNMP|   No     | Yes |
1886   CheckPoint on SPLAT     |   Yes      |   Yes    |   Yes     | Yes |   Yes    | No  | check_snmp_cpfw.pl
1887   CheckPoint on Nokia IP  |   Yes      |   Yes    |   Yes     | No  |   ??     | No  | check_snmp_vrrp.pl
1888   Boostedge               |   Yes      |   Yes    |   Yes     | Yes |   ??     | No  | check_snmp_boostedge.pl
1889   AS400                   |   Yes      |   Yes    |   Yes     | Yes |   No     | No  |
1890   NetsecureOne Netbox     |   Yes      |   Yes    |   Yes     | ??  |   Yes    | No  |
1891   Radware Linkproof       |   Yes      |   N/A    |   SNMP    | SNMP|   No     | No  | check_snmp_linkproof_nhr <br> check_snmp_vrrp.pl
1892   IronPort                |   Yes      |   SNMP   |   SNMP    | SNMP|   No     | Yes |
1893   Cisco CSS               |   Yes      |   ??     |   Yes     | Yes |   No     | ??  | check_snmp_css.pl
1894
1895
1896 ### snmp-load <a id="plugin-check-command-snmp-load"></a>
1897
1898 Check command object for the [check_snmp_load.pl](http://nagios.manubulon.com/snmp_load.html) plugin.
1899
1900 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1901
1902
1903 Name                    | Description
1904 ------------------------|--------------
1905 snmp_address            | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1906 snmp_nocrypt            | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
1907 snmp_community          | **Optional.** The SNMP community. Defaults to "public".
1908 snmp_port               | **Optional.** The SNMP port connection.
1909 snmp_v2                 | **Optional.** SNMP version to 2c. Defaults to false.
1910 snmp_v3                 | **Optional.** SNMP version to 3. Defaults to false.
1911 snmp_login              | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
1912 snmp_password           | **Required.** SNMP version 3 password. No value defined as default.
1913 snmp_v3_use_privpass    | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
1914 snmp_v3_use_authprotocol| **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
1915 snmp_authprotocol       | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
1916 snmp_privpass           | **Required.** SNMP version 3 priv password. No value defined as default.
1917 snmp_warn               | **Optional.** The warning threshold. Change the `snmp_load_type` var to "netsl" for using 3 values.
1918 snmp_crit               | **Optional.** The critical threshold. Change the `snmp_load_type` var to "netsl" for using 3 values.
1919 snmp_load_type          | **Optional.** Load type. Defaults to "stand". Check all available types in the [snmp load](http://nagios.manubulon.com/snmp_load.html) documentation.
1920 snmp_perf               | **Optional.** Enable perfdata values. Defaults to true.
1921 snmp_timeout            | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
1922
1923 ### snmp-memory <a id="plugin-check-command-snmp-memory"></a>
1924
1925 Check command object for the [check_snmp_mem.pl](http://nagios.manubulon.com/snmp_mem.html) plugin.
1926
1927 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1928
1929 Name                    | Description
1930 ------------------------|--------------
1931 snmp_address            | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1932 snmp_nocrypt            | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
1933 snmp_community          | **Optional.** The SNMP community. Defaults to "public".
1934 snmp_port               | **Optional.** The SNMP port connection.
1935 snmp_v2                 | **Optional.** SNMP version to 2c. Defaults to false.
1936 snmp_v3                 | **Optional.** SNMP version to 3. Defaults to false.
1937 snmp_login              | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
1938 snmp_password           | **Required.** SNMP version 3 password. No value defined as default.
1939 snmp_v3_use_privpass    | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
1940 snmp_v3_use_authprotocol| **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
1941 snmp_authprotocol       | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
1942 snmp_privpass           | **Required.** SNMP version 3 priv password. No value defined as default.
1943 snmp_warn               | **Optional.** The warning threshold.
1944 snmp_crit               | **Optional.** The critical threshold.
1945 snmp_is_cisco           | **Optional.** Change OIDs for Cisco switches. Defaults to false.
1946 snmp_is_hp              | **Optional.** Change OIDs for HP/Procurve switches. Defaults to false.
1947 snmp_perf               | **Optional.** Enable perfdata values. Defaults to true.
1948 snmp_timeout            | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
1949
1950 ### snmp-storage <a id="plugin-check-command-snmp-storage"></a>
1951
1952 Check command object for the [check_snmp_storage.pl](http://nagios.manubulon.com/snmp_storage.html) plugin.
1953
1954 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1955
1956 Name                    | Description
1957 ------------------------|--------------
1958 snmp_address            | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1959 snmp_nocrypt            | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
1960 snmp_community          | **Optional.** The SNMP community. Defaults to "public".
1961 snmp_port               | **Optional.** The SNMP port connection.
1962 snmp_v2                 | **Optional.** SNMP version to 2c. Defaults to false.
1963 snmp_v3                 | **Optional.** SNMP version to 3. Defaults to false.
1964 snmp_login              | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
1965 snmp_password           | **Required.** SNMP version 3 password. No value defined as default.
1966 snmp_v3_use_privpass    | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
1967 snmp_v3_use_authprotocol| **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
1968 snmp_authprotocol       | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
1969 snmp_privpass           | **Required.** SNMP version 3 priv password. No value defined as default.
1970 snmp_warn               | **Optional.** The warning threshold.
1971 snmp_crit               | **Optional.** The critical threshold.
1972 snmp_storage_name       | **Optional.** Storage name. Default to regex "^/$$". More options available in the [snmp storage](http://nagios.manubulon.com/snmp_storage.html) documentation.
1973 snmp_perf               | **Optional.** Enable perfdata values. Defaults to true.
1974 snmp_timeout            | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
1975
1976 ### snmp-interface <a id="plugin-check-command-snmp-interface"></a>
1977
1978 Check command object for the [check_snmp_int.pl](http://nagios.manubulon.com/snmp_int.html) plugin.
1979
1980 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1981
1982 Name                        | Description
1983 ----------------------------|--------------
1984 snmp_address                | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1985 snmp_nocrypt                | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
1986 snmp_community              | **Optional.** The SNMP community. Defaults to "public".
1987 snmp_port                   | **Optional.** The SNMP port connection.
1988 snmp_v2                     | **Optional.** SNMP version to 2c. Defaults to false.
1989 snmp_v3                     | **Optional.** SNMP version to 3. Defaults to false.
1990 snmp_login                  | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
1991 snmp_password               | **Required.** SNMP version 3 password. No value defined as default.
1992 snmp_v3_use_privpass        | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
1993 snmp_v3_use_authprotocol    | **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
1994 snmp_authprotocol           | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
1995 snmp_privpass               | **Required.** SNMP version 3 priv password. No value defined as default.
1996 snmp_warn                   | **Optional.** The warning threshold.
1997 snmp_crit                   | **Optional.** The critical threshold.
1998 snmp_interface              | **Optional.** Network interface name. Default to regex "eth0".
1999 snmp_interface_inverse      | **Optional.** Inverse Interface check, down is ok. Defaults to false as it is missing.
2000 snmp_interface_perf         | **Optional.** Check the input/ouput bandwidth of the interface. Defaults to true.
2001 snmp_interface_label        | **Optional.** Add label before speed in output: in=, out=, errors-out=, etc.
2002 snmp_interface_bits_bytes   | **Optional.** Output performance data in bits/s or Bytes/s. **Depends** on snmp_interface_kbits set to true. Defaults to true.
2003 snmp_interface_percent      | **Optional.** Output performance data in % of max speed. Defaults to false.
2004 snmp_interface_kbits        | **Optional.** Make the warning and critical levels in KBits/s. Defaults to true.
2005 snmp_interface_megabytes    | **Optional.** Make the warning and critical levels in Mbps or MBps. **Depends** on snmp_interface_kbits set to true. Defaults to true.
2006 snmp_interface_64bit        | **Optional.** Use 64 bits counters instead of the standard counters when checking bandwidth & performance data for interface >= 1Gbps. Defaults to false.
2007 snmp_interface_errors       | **Optional.** Add error & discard to Perfparse output. Defaults to true.
2008 snmp_interface_noregexp     | **Optional.** Do not use regexp to match interface name in description OID. Defaults to false.
2009 snmp_interface_delta        | **Optional.** Delta time of perfcheck. Defaults to "300" (5 min).
2010 snmp_interface_warncrit_percent | **Optional.** Make the warning and critical levels in % of reported interface speed. If set, **snmp_interface_megabytes** needs to be set to false. Defaults to false.
2011 snmp_interface_ifname       | **Optional.** Switch from IF-MIB::ifDescr to IF-MIB::ifName when looking up the interface's name.
2012 snmp_interface_ifalias      | **Optional.** Switch from IF-MIB::ifDescr to IF-MIB::ifAlias when looking up the interface's name.
2013 snmp_perf                   | **Optional.** Enable perfdata values. Defaults to true.
2014 snmp_timeout                | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
2015
2016 ### snmp-process <a id="plugin-check-command-snmp-process"></a>
2017
2018 Check command object for the [check_snmp_process.pl](http://nagios.manubulon.com/snmp_process.html) plugin.
2019
2020 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2021
2022 Name                       | Description
2023 ---------------------------|--------------
2024 snmp_address               | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2025 snmp_nocrypt               | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
2026 snmp_community             | **Optional.** The SNMP community. Defaults to "public".
2027 snmp_port                  | **Optional.** The SNMP port connection.
2028 snmp_v2                    | **Optional.** SNMP version to 2c. Defaults to false.
2029 snmp_v3                    | **Optional.** SNMP version to 3. Defaults to false.
2030 snmp_login                 | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
2031 snmp_password              | **Required.** SNMP version 3 password. No value defined as default.
2032 snmp_v3_use_privpass       | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
2033 snmp_v3_use_authprotocol   | **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
2034 snmp_authprotocol          | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
2035 snmp_privpass              | **Required.** SNMP version 3 priv password. No value defined as default..
2036 snmp_warn                  | **Optional.** The warning threshold.
2037 snmp_crit                  | **Optional.** The critical threshold.
2038 snmp_process_name          | **Optional.** Name of the process (regexp). No trailing slash!. Defaults to ".*".
2039 snmp_perf                  | **Optional.** Enable perfdata values. Defaults to true.
2040 snmp_timeout               | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
2041 snmp_process_use_params    | **Optional.** Add process parameters to process name for regexp matching. Example: "named.*-t /var/named/chroot" will only select named process with this parameter. Defaults to false.
2042 snmp_process_mem_usage     | **Optional.** Define to check memory usage for the process. Defaults to false.
2043 snmp_process_mem_threshold | **Optional.** Defines the warning and critical thresholds in Mb when snmp_process_mem_usage set to true. Example "512,1024". Defaults to "0,0".
2044 snmp_process_cpu_usage     | **Optional.** Define to check CPU usage for the process. Defaults to false.
2045 snmp_process_cpu_threshold | **Optional.** Defines the warning and critical thresholds in % when snmp_process_cpu_usage set to true. If more than one CPU, value can be > 100% : 100%=1 CPU. Example "15,50". Defaults to "0,0".
2046
2047
2048 ## Contributed Plugin Check Commands <a id="plugin-contrib"></a>
2049
2050 The contributed Plugin Check Commands provides various additional command definitions
2051 contributed by community members.
2052
2053 These check commands assume that the global constant named `PluginContribDir`
2054 is set to the path where the user installs custom plugins and can be enabled by
2055 uncommenting the corresponding line in [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf):
2056
2057 ```
2058 vim /etc/icinga2/icinga2.conf
2059
2060 include <plugin-contrib>
2061 ```
2062
2063 This is enabled by default since Icinga 2 2.5.0.
2064
2065 ### Databases <a id="plugin-contrib-databases"></a>
2066
2067 This category contains plugins for various database servers.
2068
2069 #### db2_health <a id="plugin-contrib-command-db2_health"></a>
2070
2071 The [check_db2_health](https://labs.consol.de/nagios/check_db2_health/) plugin
2072 uses the `DBD::DB2` Perl library to monitor a [DB2](https://www.ibm.com/support/knowledgecenter/SSEPGG_11.1.0/)
2073 database.
2074
2075 The Git repository is located on [GitHub](https://github.com/lausser/check_db2_health).
2076
2077 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2078
2079 Name                             | Description
2080 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2081 db2_health_database           | **Required.** The name of the database. (If it was catalogued locally, this parameter is the only you need. Otherwise you must specify database, hostname and port)
2082 db2_health_username           | **Optional.** The username for the database connection.
2083 db2_health_password           | **Optional.** The password for the database connection.
2084 db2_health_port               | **Optional.** The port where DB2 is listening.
2085 db2_health_warning            | **Optional.** The warning threshold depending on the mode.
2086 db2_health_critical           | **Optional.** The critical threshold depending on the mode.
2087 db2_health_mode               | **Required.** The mode uses predefined keywords for the different checks. For example "connection-time", "database-usage" or "sql".
2088 db2_health_method             | **Optional.** This tells the plugin how to connect to the database. The only method implemented yet is “dbi” which is the default. (It means, the plugin uses the perl module DBD::DB2).
2089 db2_health_name               | **Optional.** The tablespace, datafile, wait event, latch, enqueue depending on the mode or SQL statement to be executed with "db2_health_mode" sql.
2090 db2_health_name2              | **Optional.** If "db2_health_name" is a sql statement, "db2_health_name2" can be used to appear in the output and the performance data.
2091 db2_health_regexp             | **Optional.** If set to true, "db2_health_name" will be interpreted as a regular expression. Defaults to false.
2092 db2_health_units              | **Optional.** This is used for a better output of mode=sql and for specifying thresholds for mode=tablespace-free. Possible values are "%", "KB", "MB" and "GB".
2093 db2_health_maxinactivity      | **Optional.** Used for the maximum amount of time a certain event has not happened.
2094 db2_health_mitigation         | **Optional.** Classifies the severity of an offline tablespace.
2095 db2_health_lookback           | **Optional.** How many days in the past db2_health check should look back to calculate exitcode.
2096 db2_health_report             | **Optional.** Report can be used to output only the bad news. Possible values are "short", "long", "html". Defaults to `short`.
2097 db2_health_env_db2_home       | **Required.** Specifies the location of the db2 client libraries as environment variable `DB2_HOME`. Defaults to "/opt/ibm/db2/V10.5".
2098 db2_health_env_db2_version    | **Optional.** Specifies the DB2 version as environment variable `DB2_VERSION`.
2099
2100 #### mssql_health <a id="plugin-contrib-command-mssql_health"></a>
2101
2102 The [check_mssql_health](https://labs.consol.de/nagios/check_mssql_health/index.html) plugin
2103 uses the `DBD::Sybase` Perl library based on [FreeTDS](http://www.freetds.org/) to monitor a
2104 [MS SQL](https://www.microsoft.com/en-us/sql-server/) server.
2105
2106 The Git repository is located on [GitHub](https://github.com/lausser/check_mssql_health).
2107
2108 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2109
2110 Name                             | Description
2111 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2112 mssql_health_hostname            | **Optional.** Specifies the database hostname or address. No default because you typically use "mssql_health_server".
2113 mssql_health_port                | **Optional.** Specifies the database port. No default because you typically use "mssql_health_server".
2114 mssql_health_server              | **Optional.** The name of a predefined connection (in freetds.conf).
2115 mssql_health_currentdb           | **Optional.** The name of a database which is used as the current database for the connection.
2116 mssql_health_username            | **Optional.** The username for the database connection.
2117 mssql_health_password            | **Optional.** The password for the database connection.
2118 mssql_health_warning             | **Optional.** The warning threshold depending on the mode.
2119 mssql_health_critical            | **Optional.** The critical threshold depending on the mode.
2120 mssql_health_mode                | **Required.** The mode uses predefined keywords for the different checks. For example "connection-time", "database-free" or "sql".
2121 mssql_health_method              | **Optional.** How the plugin should connect to the database (dbi for the perl module `DBD::Sybase` (default) and `sqlrelay` for the SQLRelay proxy).
2122 mssql_health_name                | **Optional.** Depending on the mode this could be the database name or a SQL statement.
2123 mssql_health_name2               | **Optional.** If "mssql_health_name" is a sql statement, "mssql_health_name2" can be used to appear in the output and the performance data.
2124 mssql_health_regexp              | **Optional.** If set to true, "mssql_health_name" will be interpreted as a regular expression. Defaults to false.
2125 mssql_health_units               | **Optional.** This is used for a better output of mode=sql and for specifying thresholds for mode=tablespace-free. Possible values are "%", "KB", "MB" and "GB".
2126 mssql_health_offlineok           | **Optional.** Set this to true if offline databases are perfectly ok for you. Defaults to false.
2127 mssql_health_commit              | **Optional.** Set this to true to turn on autocommit for the dbd::sybase module. Defaults to false.
2128 mssql_health_notemp              | **Optional.** Set this to true to ignore temporary databases/tablespaces. Defaults to false.
2129 mssql_health_nooffline           | **Optional.** Set this to true to ignore offline databases. Defaults to false.
2130 mssql_health_lookback            | **Optional.** The amount of time you want to look back when calculating average rates.
2131 mssql_health_report              | **Optional.** Report can be used to output only the bad news. Possible values are "short", "long", "html". Defaults to `short`.
2132
2133 #### mysql_health <a id="plugin-contrib-command-mysql_health"></a>
2134
2135 The [check_mysql_health](https://labs.consol.de/nagios/check_mysql_health/index.html) plugin
2136 uses the `DBD::MySQL` Perl library to monitor a
2137 [MySQL](https://dev.mysql.com/downloads/mysql/) or [MariaDB](https://mariadb.org/about/) database.
2138
2139 The Git repository is located on [GitHub](https://github.com/lausser/check_mysql_health).
2140
2141 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2142
2143 Name                             | Description
2144 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2145 mysql_health_hostname            | **Required.** Specifies the database hostname or address. Defaults to "$address$" or "$address6$" if the `address` attribute is not set.
2146 mysql_health_port                | **Optional.** Specifies the database port. Defaults to 3306 (or 1186 for "mysql_health_mode" cluster).
2147 mysql_health_socket              | **Optional.** Specifies the database unix socket. No default.
2148 mysql_health_username            | **Optional.** The username for the database connection.
2149 mysql_health_password            | **Optional.** The password for the database connection.
2150 mysql_health_database            | **Optional.** The database to connect to. Defaults to information_schema.
2151 mysql_health_warning             | **Optional.** The warning threshold depending on the mode.
2152 mysql_health_critical            | **Optional.** The critical threshold depending on the mode.
2153 mysql_health_warningx            | **Optional.** The extended warning thresholds depending on the mode.
2154 mysql_health_criticalx           | **Optional.** The extended critical thresholds depending on the mode.
2155 mysql_health_mode                | **Required.** The mode uses predefined keywords for the different checks. For example "connection-time", "slave-lag" or "sql".
2156 mysql_health_method              | **Optional.** How the plugin should connect to the database (`dbi` for using DBD::Mysql (default), `mysql` for using the mysql-Tool).
2157 mysql_health_commit              | **Optional.** Turns on autocommit for the dbd::* module.
2158 mysql_health_notemp              | **Optional.** Ignore temporary databases/tablespaces.
2159 mysql_health_nooffline           | **Optional.** Skip the offline databases.
2160 mysql_health_regexp              | **Optional.** Parameter name/name2/name3 will be interpreted as (perl) regular expression.
2161 mysql_health_name                | **Optional.** The name of a specific component to check.
2162 mysql_health_name2               | **Optional.** The secondary name of a component.
2163 mysql_health_name3               | **Optional.** The tertiary name of a component.
2164 mysql_health_units               | **Optional.** This is used for a better output of mode=sql and for specifying thresholds for mode=tablespace-free. Possible values are "%", "KB", "MB" and "GB".
2165 mysql_health_labelformat         | **Optional.** One of those formats pnp4nagios or groundwork. Defaults to pnp4nagios.
2166 mysql_health_extraopts           | **Optional.** Read command line arguments from an external file.
2167 mysql_health_blacklist           | **Optional.** Blacklist some (missing/failed) components"
2168 mysql_health_mitigation          | **Optional.** "The parameter allows you to change a critical error to a warning."
2169 mysql_health_lookback            | **Optional.** The amount of time you want to look back when calculating average rates."
2170 mysql_health_environment         | **Optional.** Add a variable to the plugin's environment."
2171 mysql_health_morphmessage        | **Optional.** Modify the final output message."
2172 mysql_health_morphperfdata       | **Optional.** The parameter allows you to change performance data labels."
2173 mysql_health_selectedperfdata    | **Optional.** The parameter allows you to limit the list of performance data."
2174 mysql_health_report              | **Optional.** Can be used to shorten the output."
2175 mysql_health_multiline           | **Optional.** Multiline output."
2176 mysql_health_negate              | **Optional.** Emulate the negate plugin. --negate warning=critical --negate unknown=critical."
2177 mysql_health_withmymodulesdyndir | **Optional.** Add-on modules for the my-modes will be searched in this directory."
2178 mysql_health_statefilesdir       | **Optional.** An alternate directory where the plugin can save files."
2179 mysql_health_isvalidtime         | **Optional.** Signals the plugin to return OK if now is not a valid check time."
2180 mysql_health_timeout             | **Optional.** Plugin timeout. Defaults to 60s.
2181
2182 #### oracle_health <a id="plugin-contrib-command-oracle_health"></a>
2183
2184 The [check_oracle_health](https://labs.consol.de/nagios/check_oracle_health/index.html) plugin
2185 uses the `DBD::Oracle` Perl library to monitor an [Oracle](https://www.oracle.com/database/) database.
2186
2187 The Git repository is located on [GitHub](https://github.com/lausser/check_oracle_health).
2188
2189 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2190
2191 Name                             | Description
2192 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2193 oracle_health_connect            | **Required.** Specifies the database connection string (from tnsnames.ora).
2194 oracle_health_username           | **Optional.** The username for the database connection.
2195 oracle_health_password           | **Optional.** The password for the database connection.
2196 oracle_health_warning            | **Optional.** The warning threshold depending on the mode.
2197 oracle_health_critical           | **Optional.** The critical threshold depending on the mode.
2198 oracle_health_mode               | **Required.** The mode uses predefined keywords for the different checks. For example "connection-time", "flash-recovery-area-usage" or "sql".
2199 oracle_health_method             | **Optional.** How the plugin should connect to the database (`dbi` for using DBD::Oracle (default), `sqlplus` for using the sqlplus-Tool).
2200 oracle_health_name               | **Optional.** The tablespace, datafile, wait event, latch, enqueue depending on the mode or SQL statement to be executed with "oracle_health_mode" sql.
2201 oracle_health_name2              | **Optional.** If "oracle_health_name" is a sql statement, "oracle_health_name2" can be used to appear in the output and the performance data.
2202 oracle_health_regexp             | **Optional.** If set to true, "oracle_health_name" will be interpreted as a regular expression. Defaults to false.
2203 oracle_health_units              | **Optional.** This is used for a better output of mode=sql and for specifying thresholds for mode=tablespace-free. Possible values are "%", "KB", "MB" and "GB".
2204 oracle_health_ident              | **Optional.** If set to true, outputs instance and database names. Defaults to false.
2205 oracle_health_commit             | **Optional.** Set this to true to turn on autocommit for the dbd::oracle module. Defaults to false.
2206 oracle_health_noperfdata         | **Optional.** Set this to true if you want to disable perfdata. Defaults to false.
2207 oracle_health_timeout            | **Optional.** Plugin timeout. Defaults to 60s.
2208 oracle_health_report             | **Optional.** Select the plugin output format. Can be short or long. Default to long.
2209
2210 Environment Macros:
2211
2212 Name                | Description
2213 --------------------|------------------------------------------------------------------------------------------------------------------------------------------
2214 ORACLE_HOME         | **Required.** Specifies the location of the oracle instant client libraries. Defaults to "/usr/lib/oracle/11.2/client64/lib". Can be overridden by setting "oracle_home".
2215 TNS_ADMIN           | **Required.** Specifies the location of the tnsnames.ora including the database connection strings. Defaults to "/etc/icinga2/plugin-configs". Can be overridden by setting "oracle_tns_admin".
2216
2217 #### postgres <a id="plugin-contrib-command-postgres"></a>
2218
2219 The [check_postgres](https://bucardo.org/wiki/Check_postgres) plugin
2220 uses the `psql` binary to monitor a [PostgreSQL](https://www.postgresql.org/about/) database.
2221
2222 The Git repository is located on [GitHub](https://github.com/bucardo/check_postgres).
2223
2224 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2225
2226 Name                             | Description
2227 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2228 postgres_host        | **Optional.** Specifies the database hostname or address. Defaults to "$address$" or "$address6$" if the `address` attribute is not set. If "postgres_unixsocket" is set to true, falls back to unix socket.
2229 postgres_port        | **Optional.** Specifies the database port. Defaults to 5432.
2230 postgres_dbname      | **Optional.** Specifies the database name to connect to. Defaults to "postgres" or "template1".
2231 postgres_dbuser      | **Optional.** The username for the database connection. Defaults to "postgres".
2232 postgres_dbpass      | **Optional.** The password for the database connection. You can use a .pgpass file instead.
2233 postgres_dbservice   | **Optional.** Specifies the service name to use inside of pg_service.conf.
2234 postgres_warning     | **Optional.** Specifies the warning threshold, range depends on the action.
2235 postgres_critical    | **Optional.** Specifies the critical threshold, range depends on the action.
2236 postgres_include     | **Optional.** Specifies name(s) items to specifically include (e.g. tables), depends on the action.
2237 postgres_exclude     | **Optional.** Specifies name(s) items to specifically exclude (e.g. tables), depends on the action.
2238 postgres_includeuser | **Optional.** Include objects owned by certain users.
2239 postgres_excludeuser | **Optional.** Exclude objects owned by certain users.
2240 postgres_standby     | **Optional.** Assume that the server is in continious WAL recovery mode if set to true. Defaults to false.
2241 postgres_production  | **Optional.** Assume that the server is in production mode if set to true. Defaults to false.
2242 postgres_action      | **Required.** Determines the test executed.
2243 postgres_unixsocket  | **Optional.** If "postgres_unixsocket" is set to true, the unix socket is used instead of an address. Defaults to false.
2244 postgres_query       | **Optional.** Query for "custom_query" action.
2245 postgres_valtype     | **Optional.** Value type of query result for "custom_query".
2246 postgres_reverse     | **Optional.** If "postgres_reverse" is set, warning and critical values are reversed for "custom_query" action.
2247 postgres_tempdir     | **Optional.** Specify directory for temporary files. The default directory is dependent on the OS. More details [here](https://perldoc.perl.org/File/Spec.html).
2248
2249 #### mongodb <a id="plugin-contrib-command-mongodb"></a>
2250
2251 The [check_mongodb.py](https://github.com/mzupan/nagios-plugin-mongodb) plugin
2252 uses the `pymongo` Python library to monitor a [MongoDB](https://docs.mongodb.com/manual/) instance.
2253
2254 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2255
2256 Name                             | Description
2257 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2258 mongodb_host                     | **Required.** Specifies the hostname or address.
2259 mongodb_port                     | **Required.** The port mongodb is runnung on.
2260 mongodb_user                     | **Optional.** The username you want to login as
2261 mongodb_passwd                   | **Optional.** The password you want to use for that user
2262 mongodb_warning                  | **Optional.** The warning threshold we want to set
2263 mongodb_critical                 | **Optional.** The critical threshold we want to set
2264 mongodb_action                   | **Required.** The action you want to take
2265 mongodb_maxlag                   | **Optional.** Get max replication lag (for replication_lag action only)
2266 mongodb_mappedmemory             | **Optional.** Get mapped memory instead of resident (if resident memory can not be read)
2267 mongodb_perfdata                 | **Optional.** Enable output of Nagios performance data
2268 mongodb_database                 | **Optional.** Specify the database to check
2269 mongodb_alldatabases             | **Optional.** Check all databases (action database_size)
2270 mongodb_ssl                      | **Optional.** Connect using SSL
2271 mongodb_replicaset               | **Optional.** Connect to replicaset
2272 mongodb_replcheck                | **Optional.** If set to true, will enable the mongodb_replicaset value needed for "replica_primary" check
2273 mongodb_querytype                | **Optional.** The query type to check [query\|insert\|update\|delete\|getmore\|command] from queries_per_second
2274 mongodb_collection               | **Optional.** Specify the collection to check
2275 mongodb_sampletime               | **Optional.** Time used to sample number of pages faults
2276
2277 #### elasticsearch <a id="plugin-contrib-command-elasticsearch"></a>
2278
2279 The [check_elasticsearch](https://github.com/anchor/nagios-plugin-elasticsearch) plugin
2280 uses the HTTP API to monitor an [Elasticsearch](https://www.elastic.co/products/elasticsearch) node.
2281
2282 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2283
2284 Name                         | Description
2285 -----------------------------|-------------------------------------------------------------------------------------------------------
2286 elasticsearch_failuredomain  | **Optional.** A comma-separated list of ElasticSearch attributes that make up your cluster's failure domain.
2287 elasticsearch_host           | **Optional.** Hostname or network address to probe. Defaults to 'localhost'.
2288 elasticsearch_masternodes    | **Optional.** Issue a warning if the number of master-eligible nodes in the cluster drops below this number. By default, do not monitor the number of nodes in the cluster.
2289 elasticsearch_port           | **Optional.** TCP port to probe.  The ElasticSearch API should be listening here. Defaults to 9200.
2290 elasticsearch_prefix         | **Optional.** Optional prefix (e.g. 'es') for the ElasticSearch API. Defaults to ''.
2291 elasticsearch_yellowcritical | **Optional.** Instead of issuing a 'warning' for a yellow cluster state, issue a 'critical' alert. Defaults to false.
2292
2293 #### redis <a id="plugin-contrib-command-redis"></a>
2294
2295 The [check_redis.pl](https://github.com/willixix/naglio-plugins/blob/master/check_redis.pl) plugin
2296 uses the `Redis` Perl library to monitor a [Redis](https://redis.io/) instance. The plugin can
2297 measure response time, hitrate, memory utilization, check replication synchronization, etc. It is
2298 also possible to test data in a specified key and calculate averages or summaries on ranges.
2299
2300 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2301
2302 Name                     | Description
2303 -------------------------|--------------------------------------------------------------------------------------------------------------
2304 redis_hostname           | **Required.** Hostname or IP Address to check. Defaults to "127.0.0.1".
2305 redis_port               | **Optional.** Port number to query. Default to "6379".
2306 redis_database           | **Optional.** Database name (usually a number) to query, needed for **redis_query**.
2307 redis_password           | **Optional.** Password for Redis authentication. Safer alternative is to put them in a file and use **redis_credentials**.
2308 redis_credentials        | **Optional.** Credentials file to read for Redis authentication.
2309 redis_timeout            | **Optional.** Allows to set timeout for execution of this plugin.
2310 redis_variables          | **Optional.** List of variables from info data to do threshold checks on.
2311 redis_warn               | **Optional.** This option can only be used if **redis_variables** is used and the number of values listed here must exactly match number of variables specified.
2312 redis_crit               | **Optional.** This option can only be used if **redis_variables** is used and the number of values listed here must exactly match number of variables specified.
2313 redis_perfparse          | **Optional.** This should only be used with variables and causes variable data not only to be printed as part of main status line but also as perfparse compatible output. Defaults to false.
2314 redis_perfvars           | **Optional.** This allows to list variables which values will go only into perfparse output (and not for threshold checking).
2315 redis_prev_perfdata      | **Optional.** If set to true, previous performance data are used to calculate rate of change for counter statistics variables and for proper calculation of hitrate. Defaults to false.
2316 redis_rate_label         | **Optional.** Prefix or Suffix label used to create a new variable which has rate of change of another base variable. You can specify PREFIX or SUFFIX or both as one string separated by ",". Default if not specified is suffix "_rate".
2317 redis_query              | **Optional.** Option specifies key to query and optional variable name to assign the results to after.
2318 redis_option             | **Optional.** Specifiers are separated by "," and must include NAME or PATTERN.
2319 redis_response_time      | **Optional.** If this is used, plugin will measure and output connection response time in seconds. With **redis_perfparse** this would also be provided on perf variables.
2320 redis_hitrate            | **Optional.** Calculates Hitrate and specify values are interpreted as WARNING and CRITICAL thresholds.
2321 redis_memory_utilization | **Optional.** This calculates percent of total memory on system used by redis. Total_memory on server must be specified with **redis_total_memory**. If you specify by itself, the plugin will just output this info. Parameter values are interpreted as WARNING and CRITICAL thresholds.
2322 redis_total_memory       | **Optional.** Amount of memory on a system for memory utilization calculation. Use system memory or max_memory setting of redis.
2323 redis_replication_delay  | **Optional.** Allows to set threshold on replication delay info.
2324
2325
2326 ### Hardware <a id="plugin-contrib-hardware"></a>
2327
2328 This category includes all plugin check commands for various hardware checks.
2329
2330 #### hpasm <a id="plugin-contrib-command-hpasm"></a>
2331
2332 The [check_hpasm](https://labs.consol.de/de/nagios/check_hpasm/index.html) plugin
2333 monitors the hardware health of HP Proliant Servers, provided that the `hpasm`
2334 (HP Advanced Server Management) software is installed. It is also able to monitor
2335 the system health of HP Bladesystems and storage systems.
2336
2337 The plugin can run in two different ways:
2338
2339 1. Local execution using the `hpasmcli` command line tool.
2340 2. Remote SNMP query which invokes the HP Insight Tools on the remote node.
2341
2342 You can either set or omit `hpasm_hostname` custom attribute and select the corresponding node.
2343
2344 The `hpasm_remote` attribute enables the plugin to execute remote SNMP queries if set to `true`.
2345 For compatibility reasons this attribute uses `true` as default value, and ensures that
2346 specifying the `hpasm_hostname` always enables remote checks.
2347
2348 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2349
2350 Name                            | Description
2351 --------------------------------|-----------------------------------------------------------------------
2352 hpasm_hostname                  | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2353 hpasm_community                 | **Optional.** SNMP community of the server (SNMP v1/2 only).
2354 hpasm_protocol                  | **Optional.** The SNMP protocol to use (default: 2c, other possibilities: 1,3).
2355 hpasm_port                      | **Optional.** The SNMP port to use (default: 161).
2356 hpasm_blacklist                 | **Optional.** Blacklist some (missing/failed) components.
2357 hpasm_ignore-dimms              | **Optional.** Ignore "N/A"-DIMM status on misc. servers (e.g. older DL320).
2358 hpasm_ignore-fan-redundancy     | **Optional.** Ignore missing redundancy partners.
2359 hpasm_customthresholds          | **Optional.** Use custom thresholds for certain temperatures.
2360 hpasm_eventrange                | **Optional.** Period of time before critical IML events respecively become warnings or vanish. A range is descibed as a number and a unit (s, m, h, d), e.g. --eventrange 1h/20m.
2361 hpasm_perfdata                  | **Optional.** Output performance data. If your performance data string becomes too long and is truncated by Nagios, then you can use --perfdata=short instead. This will output temperature tags without location information.
2362 hpasm_username                  | **Optional.** The securityName for the USM security model (SNMPv3 only).
2363 hpasm_authpassword              | **Optional.** The authentication password for SNMPv3.
2364 hpasm_authprotocol              | **Optional.** The authentication protocol for SNMPv3 (md5\|sha).
2365 hpasm_privpassword              | **Optional.** The password for authPriv security level.
2366 hpasm_privprotocol              | **Optional.** The private protocol for SNMPv3 (des\|aes\|aes128\|3des\|3desde).
2367 hpasm_servertype                | **Optional.** The type of the server: proliant (default) or bladesystem.
2368 hpasm_eval-nics                 | **Optional.** Check network interfaces (and groups). Try it and report me whyt you think about it. I need to build up some know how on this subject. If you get an error and think, it is not justified for your configuration, please tell me about it. (alwasy send the output of "snmpwalk -On .... 1.3.6.1.4.1.232" and a description how you setup your nics and why it is correct opposed to the plugins error message.
2369 hpasm_remote                    | **Optional.** Run remote SNMP checks if enabled. Otherwise checks are executed locally using the `hpasmcli` binary. Defaults to `true`.
2370
2371 #### adaptec-raid <a id="plugin-contrib-command-adaptec-raid"></a>
2372
2373 The [check_adaptec_raid](https://github.com/thomas-krenn/check_adaptec_raid) plugin
2374 uses the `arcconf` binary to monitor Adaptec RAID controllers.
2375
2376 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2377
2378 Name                            | Description
2379 --------------------------------|-----------------------------------------------------------------------
2380 adaptec_controller_number       | **Required.** Controller number to monitor.
2381 arcconf_path                    | **Required.** Path to the `arcconf` binary, e.g. "/sbin/arcconf".
2382
2383 #### lsi-raid <a id="plugin-contrib-command-lsi-raid"></a>
2384
2385 The [check_lsi_raid](https://github.com/thomas-krenn/check_lsi_raid) plugin
2386 uses the `storcli` binary to monitor MegaRAID RAID controllers.
2387
2388 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2389
2390 Name                            | Description
2391 --------------------------------|-----------------------------------------------------------------------
2392 lsi_controller_number           | **Required.** Controller number to monitor.
2393 storcli_path                    | **Required.** Path to the `storcli` binary, e.g. "/usr/sbin/storcli".
2394
2395 #### smart-attributes <a id="plugin-contrib-command-smart-attributes"></a>
2396
2397 The [check_smart_attributes](https://github.com/thomas-krenn/check_smart_attributes) plugin
2398 uses the `smartctl` binary to monitor SMART values of SSDs and HDDs.
2399
2400 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2401
2402 Name                            | Description
2403 --------------------------------|-----------------------------------------------------------------------
2404 smart_attributes_config_path    | **Required.** Path to the smart attributes config file (e.g. check_smartdb.json).
2405 smart_attributes_device         | **Required.** Device name (e.g. /dev/sda) to monitor.
2406
2407
2408 ### IcingaCLI <a id="plugin-contrib-icingacli"></a>
2409
2410 This category includes all plugins using the icingacli provided by Icinga Web 2.
2411
2412 #### Business Process <a id="plugin-contrib-icingacli-businessprocess"></a>
2413
2414 This subcommand is provided by the [business process module](https://exchange.icinga.com/icinga/Business+Process)
2415 and executed as `icingacli businessprocess` CLI command.
2416
2417 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2418
2419 Name                                      | Description
2420 ------------------------------------------|-----------------------------------------------------------------------------------------
2421 icingacli_businessprocess_process         | **Required.** Business process to monitor.
2422 icingacli_businessprocess_config          | **Optional.** Configuration file containing your business process without file extension.
2423 icingacli_businessprocess_details         | **Optional.** Get details for root cause analysis. Defaults to false.
2424 icingacli_businessprocess_statetype       | **Optional.** Define which state type to look at, `soft` or `hard`. Overrides the default value inside the businessprocess module, if configured.
2425
2426
2427 ### IPMI Devices <a id="plugin-contrib-ipmi"></a>
2428
2429 This category includes all plugins for IPMI devices.
2430
2431 #### ipmi-sensor <a id="plugin-contrib-command-ipmi-sensor"></a>
2432
2433 The [check_ipmi_sensor](https://github.com/thomas-krenn/check_ipmi_sensor_v3) plugin
2434 uses the `ipmimonitoring` binary to monitor sensor data for IPMI devices. Please
2435 read the [documentation](https://www.thomas-krenn.com/en/wiki/IPMI_Sensor_Monitoring_Plugin)
2436 for installation and configuration details.
2437
2438 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2439
2440 Name                             | Description
2441 ---------------------------------|-----------------------------------------------------------------------------------------------------
2442 ipmi_address                     | **Required.** Specifies the remote host (IPMI device) to check. Defaults to "$address$".
2443 ipmi_config_file                 | **Optional.** Path to the FreeIPMI configuration file. It should contain IPMI username, IPMI password, and IPMI privilege-level.
2444 ipmi_username                    | **Optional.** The IPMI username.
2445 ipmi_password                    | **Optional.** The IPMI password.
2446 ipmi_privilege_level             | **Optional.** The IPMI privilege level of the IPMI user.
2447 ipmi_backward_compatibility_mode | **Optional.** Enable backward compatibility mode, useful for FreeIPMI 0.5.\* (this omits FreeIPMI options "--quiet-cache" and "--sdr-cache-recreate").
2448 ipmi_sensor_type                 | **Optional.** Limit sensors to query based on IPMI sensor type. Examples for IPMI sensor types are 'Fan', 'Temperature' and 'Voltage'.
2449 ipmi_sel_type                    | **Optional.** Limit SEL entries to specific types, run 'ipmi-sel -L' for a list of types. All sensors are populated to the SEL and per default all sensor types are monitored.
2450 ipmi_exclude_sensor_id           | **Optional.** Exclude sensor matching ipmi_sensor_id.
2451 ipmi_exclude_sensor              | **Optional.** Exclude sensor based on IPMI sensor type. (Comma-separated)
2452 ipmi_exclude_sel                 | **Optional.** Exclude SEL entries of specific sensor types. (comma-separated list).
2453 ipmi_sensor_id                   | **Optional.** Include sensor matching ipmi_sensor_id.
2454 ipmi_protocol_lan_version        | **Optional.** Change the protocol LAN version. Defaults to "LAN_2_0".
2455 ipmi_number_of_active_fans       | **Optional.** Number of fans that should be active. Otherwise a WARNING state is returned.
2456 ipmi_show_fru                    | **Optional.** Print the product serial number if it is available in the IPMI FRU data.
2457 ipmi_no_sel_checking             | **Optional.** Turn off system event log checking via ipmi-sel.
2458 ipmi_verbose                     | **Optional.** Be Verbose multi line output, also with additional details for warnings.
2459 ipmi_debug                       | **Optional.** Be Verbose debugging output, followed by normal multi line output.
2460
2461 #### ipmi-alive <a id="plugin-contrib-command-ipmi-alive"></a>
2462
2463 The `ipmi-alive` check commands allows you to create a ping check for the IPMI Interface.
2464
2465 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2466
2467 Name                             | Description
2468 ---------------------------------|-----------------------------------------------------------------------------------------------------
2469 ping_address                     | **Optional.** The address of the IPMI interface. Defaults to "$address$" if the IPMI interface's `address` attribute is set, "$address6$" otherwise.
2470 ping_wrta                        | **Optional.** The RTA warning threshold in milliseconds. Defaults to 5000.
2471 ping_wpl                         | **Optional.** The packet loss warning threshold in %. Defaults to 100.
2472 ping_crta                        | **Optional.** The RTA critical threshold in milliseconds. Defaults to 5000.
2473 ping_cpl                         | **Optional.** The packet loss critical threshold in %. Defaults to 100.
2474 ping_packets                     | **Optional.** The number of packets to send. Defaults to 1.
2475 ping_timeout                     | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
2476
2477
2478 ### Log Management <a id="plugins-contrib-log-management"></a>
2479
2480 This category includes all plugins for log management, for example [Logstash](https://www.elastic.co/products/logstash).
2481
2482 #### logstash <a id="plugins-contrib-command-logstash"></a>
2483
2484 The [logstash](https://github.com/widhalmt/check_logstash) plugin connects to
2485 the Node API of Logstash. This plugin requires at least Logstash version 5.0.x.
2486
2487 The Node API is not activated by default. You have to configure your Logstash
2488 installation in order to allow plugin connections.
2489
2490 Name                       | Description
2491 ---------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2492 logstash_hostname          | **Optional.** Hostname where Logstash is running. Defaults to `check_address`
2493 logstash_port              | **Optional.** Port where Logstash is listening for API requests. Defaults to 9600
2494 logstash_filedesc_warn     | **Optional.** Warning threshold of file descriptor usage in percent. Defaults to 85 (percent).
2495 logstash_filedesc_crit     | **Optional.** Critical threshold of file descriptor usage in percent. Defaults to 95 (percent).
2496 logstash_heap_warn         | **Optional.** Warning threshold of heap usage in percent. Defaults to 70 (percent).
2497 logstash_heap_crit         | **Optional.** Critical threshold of heap usage in percent Defaults to 80 (percent).
2498 logstash_inflight_warn     | **Optional.** Warning threshold of inflight events.
2499 logstash_inflight_crit     | **Optional.** Critical threshold of inflight events.
2500 logstash_cpu_warn          | **Optional.** Warning threshold for cpu usage in percent.
2501 logstash_cpu_crit          | **Optional.** Critical threshold for cpu usage in percent.
2502
2503
2504 ### Metrics <a id="plugin-contrib-metrics"></a>
2505
2506 This category includes all plugins for metric-based checks.
2507
2508 #### graphite <a id="plugin-contrib-command-graphite"></a>
2509
2510 The [check_graphite](https://github.com/obfuscurity/nagios-scripts) plugin
2511 uses the `rest-client` Ruby library to monitor a [Graphite](https://graphiteapp.org) instance.
2512
2513 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2514
2515 Name                                | Description
2516 ------------------------------------|-----------------------------------------------------------------------------------------------------
2517 graphite_url                        | **Required.** Target url.
2518 graphite_metric                     | **Required.** Metric path string.
2519 graphite_shortname                  | **Optional.** Metric short name (used for performance data).
2520 graphite_duration                   | **Optional.** Length, in minute of data to parse (default: 5).
2521 graphite_function                   | **Optional.** Function applied to metrics for thresholds (default: average).
2522 graphite_warning                    | **Required.** Warning threshold.
2523 graphite_critical                   | **Required.** Critical threshold.
2524 graphite_units                      | **Optional.** Adds a text tag to the metric count in the plugin output. Useful to identify the metric units. Doesn't affect data queries.
2525 graphite_message                    | **Optional.** Text message to output (default: "metric count:").
2526 graphite_zero_on_error              | **Optional.** Return 0 on a graphite 500 error.
2527 graphite_link_graph                 | **Optional.** Add a link in the plugin output, showing a 24h graph for this metric in graphite.
2528
2529 ### Network Components <a id="plugin-contrib-network-components"></a>
2530
2531 This category includes all plugins for various network components like routers, switches and firewalls.
2532
2533 #### interfacetable <a id="plugin-contrib-command-interfacetable"></a>
2534
2535 The [check_interfacetable_v3t](http://www.tontonitch.com/tiki/tiki-index.php?page=Nagios+plugins+-+interfacetable_v3t) plugin
2536 generates a html page containing information about the monitored node and all of its interfaces.
2537
2538 The Git repository is located on [GitHub](https://github.com/Tontonitch/interfacetable_v3t).
2539
2540 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2541
2542 Name                                | Description
2543 ------------------------------------|-----------------------------------------------------------------------------------------------------
2544 interfacetable_hostquery            | **Required.** Specifies the remote host to poll. Defaults to "$address$".
2545 interfacetable_hostdisplay          | **Optional.** Specifies the hostname to display in the HTML link. Defaults to "$host.display_name$".
2546 interfacetable_regex                | **Optional.** Interface names and property names for some other options will be interpreted as regular expressions. Defaults to false.
2547 interfacetable_outputshort          | **Optional.** Reduce the verbosity of the plugin output. Defaults to false.
2548 interfacetable_exclude              | **Optional.** Comma separated list of interfaces globally excluded from the monitoring.
2549 interfacetable_include              | **Optional.** Comma separated list of interfaces globally included in the monitoring.
2550 interfacetable_aliasmatching        | **Optional.** Allow you to specify alias in addition to interface names. Defaults to false.
2551 interfacetable_excludetraffic       | **Optional.** Comma separated list of interfaces excluded from traffic checks.
2552 interfacetable_includetraffic       | **Optional.** Comma separated list of interfaces included for traffic checks.
2553 interfacetable_warningtraffic       | **Optional.** Interface traffic load percentage leading to a warning alert.
2554 interfacetable_criticaltraffic      | **Optional.** Interface traffic load percentage leading to a critical alert.
2555 interfacetable_pkt                  | **Optional.** Add unicast/non-unicast pkt stats for each interface.
2556 interfacetable_trafficwithpkt       | **Optional.** Enable traffic calculation using pkt counters instead of octet counters. Useful when using 32-bit counters to track the load on > 1GbE interfaces. Defaults to false.
2557 interfacetable_trackproperty        | **Optional.** List of tracked properties.
2558 interfacetable_excludeproperty      | **Optional.** Comma separated list of interfaces excluded from the property tracking.
2559 interfacetable_includeproperty      | **Optional.** Comma separated list of interfaces included in the property tracking.
2560 interfacetable_community            | **Optional.** Specifies the snmp v1/v2c community string. Defaults to "public" if using snmp v1/v2c, ignored using v3.
2561 interfacetable_snmpv2               | **Optional.** Use snmp v2c. Defaults to false.
2562 interfacetable_login                | **Optional.** Login for snmpv3 authentication.
2563 interfacetable_passwd               | **Optional.** Auth password for snmpv3 authentication.
2564 interfacetable_privpass             | **Optional.** Priv password for snmpv3 authentication.
2565 interfacetable_protocols            | **Optional.** Authentication protocol,Priv protocol for snmpv3 authentication.
2566 interfacetable_domain               | **Optional.** SNMP transport domain.
2567 interfacetable_contextname          | **Optional.** Context name for the snmp requests.
2568 interfacetable_port                 | **Optional.** SNMP port. Defaults to standard port.
2569 interfacetable_64bits               | **Optional.** Use SNMP 64-bits counters. Defaults to false.
2570 interfacetable_maxrepetitions       | **Optional.** Increasing this value may enhance snmp query performances by gathering more results at one time.
2571 interfacetable_snmptimeout          | **Optional.** Define the Transport Layer timeout for the snmp queries.
2572 interfacetable_snmpretries          | **Optional.** Define the number of times to retry sending a SNMP message.
2573 interfacetable_snmpmaxmsgsize       | **Optional.** Size of the SNMP message in octets, usefull in case of too long responses. Be carefull with network filters. Range 484 - 65535. Apply only to netsnmp perl bindings. The default is 1472 octets for UDP/IPv4, 1452 octets for UDP/IPv6, 1460 octets for TCP/IPv4, and 1440 octets for TCP/IPv6.
2574 interfacetable_unixsnmp             | **Optional.** Use unix snmp utilities for snmp requests. Defaults to false, which means use the perl bindings.
2575 interfacetable_enableperfdata       | **Optional.** Enable port performance data. Defaults to false.
2576 interfacetable_perfdataformat       | **Optional.** Define which performance data will be generated. Possible values are "full" (default), "loadonly", "globalonly".
2577 interfacetable_perfdatathreshold    | **Optional.** Define which thresholds are printed in the generated performance data. Possible values are "full" (default), "loadonly", "globalonly".
2578 interfacetable_perfdatadir          | **Optional.** When specified, the performance data are also written directly to a file, in the specified location.
2579 interfacetable_perfdataservicedesc  | **Optional.** Specify additional parameters for output performance data to PNP. Defaults to "$service.name$", only affects **interfacetable_perfdatadir**.
2580 interfacetable_grapher              | **Optional.** Specify the used graphing solution. Possible values are "pnp4nagios" (default), "nagiosgrapher", "netwaysgrapherv2" and "ingraph".
2581 interfacetable_grapherurl           | **Optional.** Graphing system url. Default depends on **interfacetable_grapher**.
2582 interfacetable_portperfunit         | **Optional.** Traffic could be reported in bits (counters) or in bps (calculated value).
2583 interfacetable_nodetype             | **Optional.** Specify the node type, for specific information to be printed / specific oids to be used. Possible values: "standard" (default), "cisco", "hp", "netscreen", "netapp", "bigip", "bluecoat", "brocade", "brocade-nos", "nortel", "hpux".
2584 interfacetable_duplex               | **Optional.** Add the duplex mode property for each interface in the interface table. Defaults to false.
2585 interfacetable_stp                  | **Optional.** Add the stp state property for each interface in the interface table. Defaults to false.
2586 interfacetable_vlan                 | **Optional.** Add the vlan attribution property for each interface in the interface table. Defaults to false. This option is available only for the following nodetypes: "cisco", "hp", "nortel"
2587 interfacetable_noipinfo             | **Optional.** Remove the ip information for each interface from the interface table. Defaults to false.
2588 interfacetable_alias                | **Optional.** Add the alias information for each interface in the interface table. Defaults to false.
2589 interfacetable_accessmethod         | **Optional.** Access method for a shortcut to the host in the HTML page. Format is : <method>[:<target>] Where method can be: ssh, telnet, http or https.
2590 interfacetable_htmltablelinktarget  | **Optional.** Specifies the windows or the frame where the [details] link will load the generated html page. Possible values are: "_blank", "_self" (default), "_parent", "_top", or a frame name.
2591 interfacetable_delta                | **Optional.** Set the delta used for interface throuput calculation in seconds.
2592 interfacetable_ifs                  | **Optional.** Input field separator. Defaults to ",".
2593 interfacetable_cache                | **Optional.** Define the retention time of the cached data in seconds.
2594 interfacetable_noifloadgradient     | **Optional.** Disable color gradient from green over yellow to red for the load percentage. Defaults to false.
2595 interfacetable_nohuman              | **Optional.** Do not translate bandwidth usage in human readable format. Defaults to false.
2596 interfacetable_snapshot             | **Optional.** Force the plugin to run like if it was the first launch. Defaults to false.
2597 interfacetable_timeout              | **Optional.** Define the global timeout limit of the plugin in seconds. Defaults to "15s".
2598 interfacetable_css                  | **Optional.** Define the css stylesheet used by the generated html files. Possible values are "classic", "icinga", "icinga-alternate1" or "nagiosxi".
2599 interfacetable_config               | **Optional.** Specify a config file to load.
2600 interfacetable_noconfigtable        | **Optional.** Disable configuration table on the generated HTML page. Defaults to false.
2601 interfacetable_notips               | **Optional.** Disable the tips in the generated html tables. Defaults to false.
2602 interfacetable_defaulttablesorting  | **Optional.** Default table sorting can be "index" (default) or "name".
2603 interfacetable_tablesplit           | **Optional.** Generate multiple interface tables, one per interface type. Defaults to false.
2604 interfacetable_notype               | **Optional.** Remove the interface type for each interface. Defaults to false.
2605
2606 #### iftraffic <a id="plugin-contrib-command-iftraffic"></a>
2607
2608 The [check_iftraffic](https://exchange.icinga.com/exchange/iftraffic) plugin
2609 checks the utilization of a given interface name using the SNMP protocol.
2610
2611 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2612
2613 Name                    | Description
2614 ------------------------|---------------------------------------------------------
2615 iftraffic_address       | **Required.** Specifies the remote host. Defaults to "$address$".
2616 iftraffic_community     | **Optional.** SNMP community. Defaults to "public'" if omitted.
2617 iftraffic_interface     | **Required.** Queried interface name.
2618 iftraffic_bandwidth     | **Required.** Interface maximum speed in kilo/mega/giga/bits per second.
2619 iftraffic_units         | **Optional.** Interface units can be one of these values: `g` (gigabits/s),`m` (megabits/s), `k` (kilobits/s),`b` (bits/s)
2620 iftraffic_warn          | **Optional.** Percent of bandwidth usage necessary to result in warning status (defaults to `85`).
2621 iftraffic_crit          | **Optional.** Percent of bandwidth usage necessary to result in critical status (defaults to `98`).
2622 iftraffic_max_counter   | **Optional.** Maximum counter value of net devices in kilo/mega/giga/bytes.
2623
2624 #### iftraffic64 <a id="plugin-contrib-command-iftraffic64"></a>
2625
2626 The [check_iftraffic64](https://exchange.icinga.com/exchange/iftraffic64) plugin
2627 checks the utilization of a given interface name using the SNMP protocol.
2628
2629 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2630
2631 Name                    | Description
2632 ------------------------|---------------------------------------------------------
2633 iftraffic64_address     | **Required.** Specifies the remote host. Defaults to "$address$".
2634 iftraffic64_community   | **Optional.** SNMP community. Defaults to "public'" if omitted.
2635 iftraffic64_interface   | **Required.** Queried interface name.
2636 iftraffic64_bandwidth   | **Required.** Interface maximum speed in kilo/mega/giga/bits per second.
2637 iftraffic64_units       | **Optional.** Interface units can be one of these values: `g` (gigabits/s),`m` (megabits/s), `k` (kilobits/s),`b` (bits/s)
2638 iftraffic64_warn        | **Optional.** Percent of bandwidth usage necessary to result in warning status (defaults to `85`).
2639 iftraffic64_crit        | **Optional.** Percent of bandwidth usage necessary to result in critical status (defaults to `98`).
2640 iftraffic64_max_counter | **Optional.** Maximum counter value of net devices in kilo/mega/giga/bytes.
2641
2642 #### interfaces <a id="plugin-contrib-command-interfaces"></a>
2643
2644 The [check_interfaces](https://git.netways.org/plugins/check_interfaces) plugin
2645 uses SNMP to monitor network interfaces and their utilization.
2646
2647 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2648
2649 Name                      | Description
2650 --------------------------|---------------------------------------------------------
2651 interfaces_address        | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2652 interfaces_regex          | **Optional.** Interface list regexp.
2653 interfaces_exclude_regex  | **Optional.** Interface list negative regexp.
2654 interfaces_errors         | **Optional.** Number of in errors (CRC errors for cisco) to consider a warning (default 50).
2655 interface_out_errors      | **Optional.** Number of out errors (collisions for cisco) to consider a warning (default same as in errors).
2656 interfaces_perfdata       | **Optional.** perfdata from last check result.
2657 interfaces_prefix         | **Optional.** Prefix interface names with this label.
2658 interfaces_lastcheck      | **Optional.** Last checktime (unixtime).
2659 interfaces_bandwidth      | **Optional.** Bandwidth warn level in percent.
2660 interfaces_speed          | **Optional.** Override speed detection with this value (bits per sec).
2661 interfaces_trim           | **Optional.** Cut this number of characters from the start of interface descriptions.
2662 interfaces_mode           | **Optional.** Special operating mode (default,cisco,nonbulk,bintec).
2663 interfaces_auth_proto     | **Optional.** SNMPv3 Auth Protocol (SHA\|MD5)
2664 interfaces_auth_phrase    | **Optional.** SNMPv3 Auth Phrase
2665 interfaces_priv_proto     | **Optional.** SNMPv3 Privacy Protocol (AES\|DES)
2666 interfaces_priv_phrase    | **Optional.** SNMPv3 Privacy Phrase
2667 interfaces_user           | **Optional.** SNMPv3 User
2668 interfaces_down_is_ok     | **Optional.** Disables critical alerts for down interfaces.
2669 interfaces_aliases        | **Optional.** Retrieves the interface description.
2670 interfaces_match_aliases  | **Optional.** Also match against aliases (Option --aliases automatically enabled).
2671 interfaces_timeout        | **Optional.** Sets the SNMP timeout (in ms).
2672 interfaces_sleep          | **Optional.** Sleep between every SNMP query (in ms).
2673 interfaces_names          | **Optional.** If set to true, use ifName instead of ifDescr.
2674
2675 #### nwc_health <a id="plugin-contrib-command-nwc_health"></a>
2676
2677 The [check_nwc_health](https://labs.consol.de/de/nagios/check_nwc_health/index.html) plugin
2678 uses SNMP to monitor network components. The plugin is able to generate interface statistics,
2679 check hardware (CPU, memory, fan, power, etc.), monitor firewall policies, HRSP, load-balancer
2680 pools, processor and memory usage.
2681
2682 Currently the following network components are supported: Cisco IOS, Cisco Nexus, Cisco ASA,
2683 Cisco PIX, F5 BIG-IP, CheckPoint Firewall1, Juniper NetScreen, HP Procurve, Nortel, Brocade 4100/4900,
2684 EMC DS 4700, EMC DS 24, Allied Telesyn. Blue Coat SG600, Cisco Wireless Lan Controller 5500,
2685 Brocade ICX6610-24-HPOE, Cisco UC Telefonzeugs, FOUNDRY-SN-AGENT-MIB, FRITZ!BOX 7390, FRITZ!DECT 200,
2686 Juniper IVE, Pulse-Gateway MAG4610, Cisco IronPort AsyncOS, Foundry, etc. A complete list can be
2687 found in the plugin [documentation](https://labs.consol.de/nagios/check_nwc_health/index.html).
2688
2689 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2690
2691 Name                            | Description
2692 --------------------------------|---------------------------------------------------------
2693 nwc_health_hostname             | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2694 nwc_health_mode                 | **Optional.** The plugin mode. A list of all available modes can be found in the [plugin documentation](https://labs.consol.de/nagios/check_nwc_health/index.html).
2695 nwc_health_timeout              | **Optional.** Seconds before plugin times out (default: 15)
2696 nwc_health_blacklist            | **Optional.** Blacklist some (missing/failed) components.
2697 nwc_health_port                 | **Optional.** The SNMP port to use (default: 161).
2698 nwc_health_domain               | **Optional.** The transport domain to use (default: udp/ipv4, other possible values: udp6, udp/ipv6, tcp, tcp4, tcp/ipv4, tcp6, tcp/ipv6).
2699 nwc_health_protocol             | **Optional.** The SNMP protocol to use (default: 2c, other possibilities: 1,3).
2700 nwc_health_community            | **Optional.** SNMP community of the server (SNMP v1/2 only).
2701 nwc_health_username             | **Optional.** The securityName for the USM security model (SNMPv3 only).
2702 nwc_health_authpassword         | **Optional.** The authentication password for SNMPv3.
2703 nwc_health_authprotocol         | **Optional.** The authentication protocol for SNMPv3 (md5\|sha).
2704 nwc_health_privpassword         | **Optional.** The password for authPriv security level.
2705 nwc_health_privprotocol         | **Optional.** The private protocol for SNMPv3 (des\|aes\|aes128\|3des\|3desde).
2706 nwc_health_contextengineid      | **Optional.** The context engine id for SNMPv3 (10 to 64 hex characters).
2707 nwc_health_contextname          | **Optional.** The context name for SNMPv3 (empty represents the default context).
2708 nwc_health_name                 | **Optional.** The name of an interface (ifDescr).
2709 nwc_health_drecksptkdb          | **Optional.** This parameter must be used instead of --name, because Devel::ptkdb is stealing the latter from the command line.
2710 nwc_health_alias                | **Optional.** The alias name of a 64bit-interface (ifAlias)
2711 nwc_health_regexp               | **Optional.** A flag indicating that --name is a regular expression
2712 nwc_health_ifspeedin            | **Optional.** Override the ifspeed oid of an interface (only inbound)
2713 nwc_health_ifspeedout           | **Optional.** Override the ifspeed oid of an interface (only outbound)
2714 nwc_health_ifspeed              | **Optional.** Override the ifspeed oid of an interface
2715 nwc_health_units                | **Optional.** One of %, B, KB, MB, GB, Bit, KBi, MBi, GBi. (used for e.g. mode interface-usage)
2716 nwc_health_name2                | **Optional.** The secondary name of a component.
2717 nwc_health_role                 | **Optional.** The role of this device in a hsrp group (active/standby/listen).
2718 nwc_health_report               | **Optional.** Can be used to shorten the output. Possible values are: 'long' (default), 'short' (to shorten if available), or 'html' (to produce some html outputs if available)
2719 nwc_health_lookback             | **Optional.** The amount of time you want to look back when calculating average rates. Use it for mode interface-errors or interface-usage. Without --lookback the time between two runs of check_nwc_health is the base for calculations. If you want your checkresult to be based for example on the past hour, use --lookback 3600.
2720 nwc_health_warning              | **Optional.** The warning threshold
2721 nwc_health_critical             | **Optional.** The critical threshold
2722 nwc_health_warningx             | **Optional.** The extended warning thresholds
2723 nwc_health_criticalx            | **Optional.** The extended critical thresholds
2724 nwc_health_mitigation           | **Optional.** The parameter allows you to change a critical error to a warning (1) or ok (0).
2725 nwc_health_selectedperfdata     | **Optional.** The parameter allows you to limit the list of performance data. It's a perl regexp. Only matching perfdata show up in the output.
2726 nwc_health_morphperfdata        | **Optional.** The parameter allows you to change performance data labels. It's a perl regexp and a substitution. --morphperfdata '(.*)ISATAP(.*)'='$1patasi$2'
2727 nwc_health_negate               | **Optional.** The parameter allows you to map exit levels, such as warning=critical.
2728 nwc_health_mymodules-dyn-dir    | **Optional.** A directory where own extensions can be found.
2729 nwc_health_servertype           | **Optional.** The type of the network device: cisco (default). Use it if auto-detection is not possible.
2730 nwc_health_statefilesdir        | **Optional.** An alternate directory where the plugin can save files.
2731 nwc_health_oids                 | **Optional.** A list of oids which are downloaded and written to a cache file. Use it together with --mode oidcache.
2732 nwc_health_offline              | **Optional.** The maximum number of seconds since the last update of cache file before it is considered too old.
2733 nwc_health_multiline            | **Optional.** Multiline output
2734
2735
2736 ### Operating System <a id="plugin-contrib-operating-system"></a>
2737
2738 This category contains plugins which receive details about your operating system
2739 or the guest system.
2740
2741 #### mem <a id="plugin-contrib-command-mem"></a>
2742
2743 The [check_mem.pl](https://github.com/justintime/nagios-plugins) plugin checks the
2744 memory usage on linux and unix hosts. It is able to count cache memory as free when
2745 compared to thresholds. More details can be found on [this blog entry]((http://sysadminsjourney.com/content/2009/06/04/new-and-improved-checkmempl-nagios-plugin).
2746
2747 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2748
2749 Name         | Description
2750 -------------|-----------------------------------------------------------------------------------------------------------------------
2751 mem_used     | **Optional.** Tell the plugin to check for used memory in opposite of **mem_free**. Must specify one of these as true.
2752 mem_free     | **Optional.** Tell the plugin to check for free memory in opposite of **mem_used**. Must specify one of these as true.
2753 mem_cache    | **Optional.** If set to true, plugin will count cache as free memory. Defaults to false.
2754 mem_warning  | **Required.** Specify the warning threshold as number interpreted as percent.
2755 mem_critical | **Required.** Specify the critical threshold as number interpreted as percent.
2756
2757 #### running_kernel <a id="plugin-contrib-command-running_kernel"></a>
2758
2759 The [check_running_kernel](https://packages.debian.org/stretch/nagios-plugins-contrib) plugin
2760 is provided by the `nagios-plugin-contrib` package on Debian/Ubuntu.
2761
2762 Custom attributes:
2763
2764 Name                       | Description
2765 ---------------------------|-------------
2766 running\_kernel\_use\_sudo | Whether to run the plugin with `sudo`. Defaults to false except on Ubuntu where it defaults to true.
2767
2768 #### iostats <a id="plugin-contrib-command-iostats"></a>
2769
2770 The [check_iostats](https://github.com/dnsmichi/icinga-plugins/blob/master/scripts/check_iostats) plugin
2771 uses the `iostat` binary to monitor I/O on a Linux host. The default thresholds are rather high
2772 so you can use a grapher for baselining before setting your own.
2773
2774 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2775
2776 Name           | Description
2777 ---------------|-----------------------------------------------------------------------------------------------------------------------
2778 iostats\_disk            | **Required.** The device to monitor without path. e.g. sda or vda. (default: sda)
2779 iostats\_warning\_tps    | **Required.** Warning threshold for tps (default: 3000)
2780 iostats\_warning\_read   | **Required.** Warning threshold for KB/s reads (default: 50000)
2781 iostats\_warning\_write  | **Required.** Warning threshold for KB/s writes (default: 10000)
2782 iostats\_warning\_wait   | **Required.** Warning threshold for % iowait (default: 50)
2783 iostats\_critical\_tps   | **Required.** Critical threshold for tps (default: 5000)
2784 iostats\_critical\_read  | **Required.** Critical threshold for KB/s reads (default: 80000)
2785 iostats\_critical\_write | **Required.** Critical threshold for KB/s writes (default: 25000)
2786 iostats\_critical\_wait  | **Required.** Critical threshold for % iowait (default: 80)
2787
2788 #### iostat <a id="plugin-contrib-command-iostat"></a>
2789
2790 The [check_iostat](https://github.com/dnsmichi/icinga-plugins/blob/master/scripts/check_iostat) plugin
2791 uses the `iostat` binary to monitor disk I/O on a Linux host. The default thresholds are rather high
2792 so you can use a grapher for baselining before setting your own.
2793
2794 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2795
2796 Name           | Description
2797 ---------------|-----------------------------------------------------------------------------------------------------------------------
2798 iostat\_disk   | **Required.** The device to monitor without path. e.g. sda or vda. (default: sda)
2799 iostat\_wtps   | **Required.** Warning threshold for tps (default: 100)
2800 iostat\_wread  | **Required.** Warning threshold for KB/s reads (default: 100)
2801 iostat\_wwrite | **Required.** Warning threshold for KB/s writes (default: 100)
2802 iostat\_ctps   | **Required.** Critical threshold for tps (default: 200)
2803 iostat\_cread  | **Required.** Critical threshold for KB/s reads (default: 200)
2804 iostat\_cwrite | **Required.** Critical threshold for KB/s writes (default: 200)
2805
2806 #### yum <a id="plugin-contrib-command-yum"></a>
2807
2808 The [check_yum](https://github.com/calestyo/check_yum) plugin checks the YUM package
2809 management system for package updates.
2810 The plugin requires the `yum-plugin-security` package to differentiate between security and normal updates.
2811
2812 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2813
2814 Name                    | Description
2815 ------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2816 yum_all_updates         | **Optional.** Set to true to not distinguish between security and non-security updates, but returns critical for any available update. This may be used if the YUM security plugin is absent or you want to maintain every single package at the latest version. You may want to use **yum_warn_on_any_update** instead of this option. Defaults to false.
2817 yum_warn_on_any_update  | **Optional.** Set to true to warn if there are any (non-security) package updates available. Defaults to false.
2818 yum_cache_only          | **Optional.** If set to true, plugin runs entirely from cache and does not update the cache when running YUM. Useful if you have `yum makecache` cronned. Defaults to false.
2819 yum_no_warn_on_lock     | **Optional.** If set to true, returns OK instead of WARNING when YUM is locked and fails to check for updates due to another instance running. Defaults to false.
2820 yum_no_warn_on_updates  | **Optional.** If set to true, returns OK instead of WARNING even when updates are available. The plugin output still shows the number of available updates. Defaults to false.
2821 yum_enablerepo          | **Optional.** Explicitly enables a reposity when calling YUM. Can take a comma separated list of repositories. Note that enabling repositories can lead to unexpected results, for example when protected repositories are enabled.
2822 yum_disablerepo         | **Optional.** Explicitly disables a reposity when calling YUM. Can take a comma separated list of repositories. Note that enabling repositories can lead to unexpected results, for example when protected repositories are enabled.
2823 yum_installroot         | **Optional.** Specifies another installation root directory (for example a chroot).
2824 yum_timeout             | **Optional.** Set a timeout in seconds after which the plugin will exit (defaults to 55 seconds).
2825
2826 ### Storage <a id="plugins-contrib-storage"></a>
2827
2828 This category includes all plugins for various storage and object storage technologies.
2829
2830 #### glusterfs <a id="plugins-contrib-command-glusterfs"></a>
2831
2832 The [glusterfs](https://www.unixadm.org/software/nagios-stuff/checks/check_glusterfs) plugin
2833 is used to check the GlusterFS storage health on the server.
2834 The plugin requires `sudo` permissions.
2835
2836 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2837
2838 Name                       | Description
2839 ---------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2840 glusterfs_perfdata         | **Optional.** Print perfdata of all or the specified volume.
2841 glusterfs_warnonfailedheal | **Optional.** Warn if the *heal-failed* log contains entries. The log can be cleared by restarting glusterd.
2842 glusterfs_volume           | **Optional.** Only check the specified *VOLUME*. If --volume is not set, all volumes are checked.
2843 glusterfs_disk_warning     | **Optional.** Warn if disk usage is above *DISKWARN*. Defaults to 90 (percent).
2844 glusterfs_disk_critical    | **Optional.** Return a critical error if disk usage is above *DISKCRIT*. Defaults to 95 (percent).
2845 glusterfs_inode_warning    | **Optional.** Warn if inode usage is above *DISKWARN*. Defaults to 90 (percent).
2846 glusterfs_inode_critical   | **Optional.** Return a critical error if inode usage is above *DISKCRIT*. Defaults to 95 (percent).
2847
2848
2849 ### Virtualization <a id="plugin-contrib-virtualization"></a>
2850
2851 This category includes all plugins for various virtualization technologies.
2852
2853 #### esxi_hardware <a id="plugin-contrib-command-esxi-hardware"></a>
2854
2855 The [check_esxi_hardware.py](https://www.claudiokuenzler.com/nagios-plugins/check_esxi_hardware.php) plugin
2856 uses the [pywbem](https://pywbem.github.io/pywbem/) Python library to monitor the hardware of ESXi servers
2857 through the [VMWare API](https://www.vmware.com/support/pubs/sdk_pubs.html) and CIM service.
2858
2859 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2860
2861 Name                    | Description
2862 ------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2863 esxi_hardware_host      | **Required.** Specifies the host to monitor. Defaults to "$address$".
2864 esxi_hardware_user      | **Required.** Specifies the user for polling. Must be a local user of the root group on the system. Can also be provided as a file path file:/path/to/.passwdfile, then first string of file is used.
2865 esxi_hardware_pass      | **Required.** Password of the user. Can also be provided as a file path file:/path/to/.passwdfile, then second string of file is used.
2866 esxi_hardware_port      | **Optional.** Specifies the CIM port to connect to. Defaults to 5989.
2867 esxi_hardware_vendor    | **Optional.** Defines the vendor of the server: "auto", "dell", "hp", "ibm", "intel", "unknown" (default).
2868 esxi_hardware_html      | **Optional.** Add web-links to hardware manuals for Dell servers (use your country extension). Only useful with **esxi_hardware_vendor** = dell.
2869 esxi_hardware_ignore    | **Optional.** Comma separated list of elements to ignore.
2870 esxi_hardware_perfdata  | **Optional.** Add performcedata for graphers like PNP4Nagios to the output. Defaults to false.
2871 esxi_hardware_nopower   | **Optional.** Do not collect power performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2872 esxi_hardware_novolts   | **Optional.** Do not collect voltage performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2873 esxi_hardware_nocurrent | **Optional.** Do not collect current performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2874 esxi_hardware_notemp    | **Optional.** Do not collect temperature performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2875 esxi_hardware_nofan     | **Optional.** Do not collect fan performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2876
2877 #### VMware <a id="plugin-contrib-vmware"></a>
2878
2879 Check commands for the [check_vmware_esx](https://github.com/BaldMansMojo/check_vmware_esx) plugin.
2880
2881 **vmware-esx-dc-volumes**
2882
2883 Check command object for the `check_vmware_esx` plugin. Shows all datastore volumes info.
2884
2885 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2886
2887 Name                    | Description
2888 ------------------------|--------------
2889 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
2890 vmware_cluster          | **Optional.** ESX or ESXi clustername.
2891 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
2892 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
2893 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
2894 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
2895 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
2896 vmware_sessionfile      | **Optional.** Session file name enhancement.
2897 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
2898 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
2899 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
2900 vmware_password         | **Optional.** The username's password. No value defined as default.
2901 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
2902 vmware_subselect        | **Optional.** Volume name to be checked the free space.
2903 vmware_gigabyte         | **Optional.** Output in GB instead of MB.
2904 vmware_usedspace        | **Optional.** Output used space instead of free. Defaults to "false".
2905 vmware_alertonly        | **Optional.** List only alerting volumes. Defaults to "false".
2906 vmware_exclude          | **Optional.** Blacklist volumes name. No value defined as default.
2907 vmware_include          | **Optional.** Whitelist volumes name. No value defined as default.
2908 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
2909 vmware_dc_volume_used   | **Optional.** Output used space instead of free. Defaults to "true".
2910 vmware_warn             | **Optional.** The warning threshold for volumes. Defaults to "80%".
2911 vmware_crit             | **Optional.** The critical threshold for volumes. Defaults to "90%".
2912
2913
2914 **vmware-esx-dc-runtime-info**
2915
2916 Check command object for the `check_vmware_esx` plugin. Shows all runtime info for the datacenter/Vcenter.
2917
2918 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2919
2920 Name                    | Description
2921 ------------------------|--------------
2922 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
2923 vmware_cluster          | **Optional.** ESX or ESXi clustername.
2924 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
2925 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
2926 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
2927 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
2928 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
2929 vmware_sessionfile      | **Optional.** Session file name enhancement.
2930 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
2931 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
2932 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
2933 vmware_password         | **Optional.** The username's password. No value defined as default.
2934 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
2935
2936
2937 **vmware-esx-dc-runtime-listvms**
2938
2939 Check command object for the `check_vmware_esx` plugin. List of vmware machines and their power state. BEWARE!! In larger environments systems can cause trouble displaying the informations needed due to the mass of data. Use **vmware_alertonly** to avoid this.
2940
2941 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2942
2943 Name                    | Description
2944 ------------------------|--------------
2945 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
2946 vmware_cluster          | **Optional.** ESX or ESXi clustername.
2947 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
2948 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
2949 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
2950 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
2951 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
2952 vmware_sessionfile      | **Optional.** Session file name enhancement.
2953 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
2954 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
2955 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
2956 vmware_password         | **Optional.** The username's password. No value defined as default.
2957 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
2958 vmware_alertonly        | **Optional.** List only alerting VMs. Important here to avoid masses of data.
2959 vmware_exclude          | **Optional.** Blacklist VMs name. No value defined as default.
2960 vmware_include          | **Optional.** Whitelist VMs name. No value defined as default.
2961 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
2962 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
2963
2964
2965 **vmware-esx-dc-runtime-listhost**
2966
2967 Check command object for the `check_vmware_esx` plugin. List of VMware ESX hosts and their power state.
2968
2969 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2970
2971 Name                    | Description
2972 ------------------------|--------------
2973 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
2974 vmware_cluster          | **Optional.** ESX or ESXi clustername.
2975 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
2976 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
2977 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
2978 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
2979 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
2980 vmware_sessionfile      | **Optional.** Session file name enhancement.
2981 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
2982 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
2983 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
2984 vmware_password         | **Optional.** The username's password. No value defined as default.
2985 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
2986 vmware_alertonly        | **Optional.** List only alerting hosts. Important here to avoid masses of data.
2987 vmware_exclude          | **Optional.** Blacklist VMware ESX hosts. No value defined as default.
2988 vmware_include          | **Optional.** Whitelist VMware ESX hosts. No value defined as default.
2989 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
2990 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
2991
2992
2993 **vmware-esx-dc-runtime-listcluster**
2994
2995 Check command object for the `check_vmware_esx` plugin. List of VMware clusters and their states.
2996
2997 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2998
2999 Name                    | Description
3000 ------------------------|--------------
3001 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3002 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3003 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3004 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3005 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3006 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3007 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3008 vmware_sessionfile      | **Optional.** Session file name enhancement.
3009 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3010 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3011 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3012 vmware_password         | **Optional.** The username's password. No value defined as default.
3013 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3014 vmware_alertonly        | **Optional.** List only alerting hosts. Important here to avoid masses of data.
3015 vmware_exclude          | **Optional.** Blacklist VMware cluster. No value defined as default.
3016 vmware_include          | **Optional.** Whitelist VMware cluster. No value defined as default.
3017 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3018 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
3019
3020
3021 **vmware-esx-dc-runtime-issues**
3022
3023 Check command object for the `check_vmware_esx` plugin. All issues for the host.
3024
3025 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3026
3027 Name                    | Description
3028 ------------------------|--------------
3029 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3030 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3031 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3032 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3033 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3034 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3035 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3036 vmware_sessionfile      | **Optional.** Session file name enhancement.
3037 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3038 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3039 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3040 vmware_password         | **Optional.** The username's password. No value defined as default.
3041 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3042 vmware_exclude          | **Optional.** Blacklist issues. No value defined as default.
3043 vmware_include          | **Optional.** Whitelist issues. No value defined as default.
3044 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3045 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
3046
3047
3048 **vmware-esx-dc-runtime-status**
3049
3050 Check command object for the `check_vmware_esx` plugin. Overall object status (gray/green/red/yellow).
3051
3052 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3053
3054 Name                    | Description
3055 ------------------------|--------------
3056 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3057 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3058 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3059 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3060 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3061 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3062 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3063 vmware_sessionfile      | **Optional.** Session file name enhancement.
3064 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3065 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3066 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3067 vmware_password         | **Optional.** The username's password. No value defined as default.
3068 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3069
3070
3071 **vmware-esx-dc-runtime-tools**
3072
3073 Check command object for the `check_vmware_esx` plugin. Vmware Tools status.
3074
3075 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3076
3077 Name                    | Description
3078 ------------------------|--------------
3079 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3080 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3081 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3082 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3083 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3084 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3085 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3086 vmware_sessionfile      | **Optional.** Session file name enhancement.
3087 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3088 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3089 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3090 vmware_password         | **Optional.** The username's password. No value defined as default.
3091 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3092 vmware_poweredonly      | **Optional.** List only VMs which are powered on. No value defined as default.
3093 vmware_alertonly        | **Optional.** List only alerting VMs. Important here to avoid masses of data.
3094 vmware_exclude          | **Optional.** Blacklist VMs. No value defined as default.
3095 vmware_include          | **Optional.** Whitelist VMs. No value defined as default.
3096 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3097 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
3098 vmware_openvmtools      | **Optional** Prevent CRITICAL state for installed and running Open VM Tools.
3099
3100
3101 **vmware-esx-soap-host-check**
3102
3103 Check command object for the `check_vmware_esx` plugin. Simple check to verify a successfull connection to VMware SOAP API.
3104
3105 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3106
3107 Name                    | Description
3108 ------------------------|--------------
3109 vmware_host             | **Required.** ESX or ESXi hostname.
3110 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3111 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3112 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3113 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3114 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3115 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3116 vmware_sessionfile      | **Optional.** Session file name enhancement.
3117 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3118 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3119 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3120 vmware_password         | **Optional.** The username's password. No value defined as default.
3121 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3122
3123
3124 **vmware-esx-soap-host-uptime**
3125
3126 Check command object for the `check_vmware_esx` plugin. Displays uptime of the VMware host.
3127
3128 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3129
3130 Name                    | Description
3131 ------------------------|--------------
3132 vmware_host             | **Required.** ESX or ESXi hostname.
3133 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3134 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3135 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3136 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3137 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3138 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3139 vmware_sessionfile      | **Optional.** Session file name enhancement.
3140 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3141 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3142 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3143 vmware_password         | **Optional.** The username's password. No value defined as default.
3144 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3145
3146
3147 **vmware-esx-soap-host-cpu**
3148
3149 Check command object for the `check_vmware_esx` plugin. CPU usage in percentage.
3150
3151 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3152
3153 Name                    | Description
3154 ------------------------|--------------
3155 vmware_host             | **Required.** ESX or ESXi hostname.
3156 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3157 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3158 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3159 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3160 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3161 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3162 vmware_sessionfile      | **Optional.** Session file name enhancement.
3163 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3164 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3165 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3166 vmware_password         | **Optional.** The username's password. No value defined as default.
3167 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3168 vmware_warn             | **Optional.** The warning threshold in percent. Defaults to "80%".
3169 vmware_crit             | **Optional.** The critical threshold in percent. Defaults to "90%".
3170
3171
3172 **vmware-esx-soap-host-cpu-ready**
3173
3174 Check command object for the `check_vmware_esx` plugin. Percentage of time that the virtual machine was ready, but could not get scheduled to run on the physical CPU. CPU ready time is dependent on the number of virtual machines on the host and their CPU loads. High or growing ready time can be a hint CPU bottlenecks.
3175
3176 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3177
3178 Name                    | Description
3179 ------------------------|--------------
3180 vmware_host             | **Required.** ESX or ESXi hostname.
3181 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3182 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3183 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3184 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3185 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3186 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3187 vmware_sessionfile      | **Optional.** Session file name enhancement.
3188 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3189 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3190 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3191 vmware_password         | **Optional.** The username's password. No value defined as default.
3192 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3193
3194
3195 **vmware-esx-soap-host-cpu-wait**
3196
3197 Check command object for the `check_vmware_esx` plugin. CPU time spent in wait state. The wait total includes time spent the CPU idle, CPU swap wait, and CPU I/O wait states. High or growing wait time can be a hint I/O bottlenecks.
3198
3199 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3200
3201 Name                    | Description
3202 ------------------------|--------------
3203 vmware_host             | **Required.** ESX or ESXi hostname.
3204 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3205 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3206 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3207 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3208 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3209 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3210 vmware_sessionfile      | **Optional.** Session file name enhancement.
3211 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3212 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3213 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3214 vmware_password         | **Optional.** The username's password. No value defined as default.
3215 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3216
3217
3218 **vmware-esx-soap-host-cpu-usage**
3219
3220 Check command object for the `check_vmware_esx` plugin. Actively used CPU of the host, as a percentage of the total available CPU. Active CPU is approximately equal to the ratio of the used CPU to the available CPU.
3221
3222 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3223
3224 Name                    | Description
3225 ------------------------|--------------
3226 vmware_host             | **Required.** ESX or ESXi hostname.
3227 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3228 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3229 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3230 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3231 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3232 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3233 vmware_sessionfile      | **Optional.** Session file name enhancement.
3234 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3235 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3236 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3237 vmware_password         | **Optional.** The username's password. No value defined as default.
3238 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3239 vmware_warn             | **Optional.** The warning threshold in percent. Defaults to "80%".
3240 vmware_crit             | **Optional.** The critical threshold in percent. Defaults to "90%".
3241
3242
3243 **vmware-esx-soap-host-mem**
3244
3245 Check command object for the `check_vmware_esx` plugin. All mem info(except overall and no thresholds).
3246
3247 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3248
3249 Name                    | Description
3250 ------------------------|--------------
3251 vmware_host             | **Required.** ESX or ESXi hostname.
3252 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3253 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3254 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3255 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3256 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3257 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3258 vmware_sessionfile      | **Optional.** Session file name enhancement.
3259 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3260 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3261 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3262 vmware_password         | **Optional.** The username's password. No value defined as default.
3263 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3264
3265
3266 **vmware-esx-soap-host-mem-usage**
3267
3268 Check command object for the `check_vmware_esx` plugin. Average mem usage in percentage.
3269
3270 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3271
3272 Name                    | Description
3273 ------------------------|--------------
3274 vmware_host             | **Required.** ESX or ESXi hostname.
3275 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3276 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3277 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3278 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3279 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3280 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3281 vmware_sessionfile      | **Optional.** Session file name enhancement.
3282 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3283 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3284 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3285 vmware_password         | **Optional.** The username's password. No value defined as default.
3286 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3287 vmware_warn             | **Optional.** The warning threshold in percent. Defaults to "80%".
3288 vmware_crit             | **Optional.** The critical threshold in percent. Defaults to "90%".
3289
3290
3291 **vmware-esx-soap-host-mem-consumed**
3292
3293 Check command object for the `check_vmware_esx` plugin. Amount of machine memory used on the host. Consumed memory includes Includes memory used by the Service Console, the VMkernel vSphere services, plus the total consumed metrics for all running virtual machines in MB.
3294
3295 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3296
3297 Name                    | Description
3298 ------------------------|--------------
3299 vmware_host             | **Required.** ESX or ESXi hostname.
3300 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3301 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3302 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3303 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3304 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3305 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3306 vmware_sessionfile      | **Optional.** Session file name enhancement.
3307 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3308 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3309 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3310 vmware_password         | **Optional.** The username's password. No value defined as default.
3311 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3312 vmware_warn             | **Optional.** The warning threshold in percent. No value defined as default.
3313 vmware_crit             | **Optional.** The critical threshold in percent. No value defined as default.
3314
3315
3316 **vmware-esx-soap-host-mem-swapused**
3317
3318 Check command object for the `check_vmware_esx` plugin. Amount of memory that is used by swap. Sum of memory swapped of all powered on VMs and vSphere services on the host in MB. In case of an error all VMs with their swap used will be displayed.
3319
3320 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3321
3322 Name                    | Description
3323 ------------------------|--------------
3324 vmware_host             | **Required.** ESX or ESXi hostname.
3325 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3326 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3327 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3328 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3329 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3330 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3331 vmware_sessionfile      | **Optional.** Session file name enhancement.
3332 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3333 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3334 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3335 vmware_password         | **Optional.** The username's password. No value defined as default.
3336 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3337 vmware_warn             | **Optional.** The warning threshold in percent. No value defined as default.
3338 vmware_crit             | **Optional.** The critical threshold in percent. No value defined as default.
3339 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
3340
3341
3342 **vmware-esx-soap-host-mem-overhead**
3343
3344 Check command object for the `check_vmware_esx` plugin. Additional mem used by VM Server in MB.
3345
3346 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3347
3348 Name                    | Description
3349 ------------------------|--------------
3350 vmware_host             | **Required.** ESX or ESXi hostname.
3351 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3352 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3353 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3354 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3355 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3356 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3357 vmware_sessionfile      | **Optional.** Session file name enhancement.
3358 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3359 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3360 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3361 vmware_password         | **Optional.** The username's password. No value defined as default.
3362 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3363 vmware_warn             | **Optional.** The warning threshold in percent. No value defined as default.
3364 vmware_crit             | **Optional.** The critical threshold in percent. No value defined as default.
3365
3366
3367 **vmware-esx-soap-host-mem-memctl**
3368
3369 Check command object for the `check_vmware_esx` plugin. The sum of all vmmemctl values in MB for all powered-on virtual machines, plus vSphere services on the host. If the balloon target value is greater than the balloon value, the VMkernel inflates the balloon, causing more virtual machine memory to be reclaimed. If the balloon target value is less than the balloon value, the VMkernel deflates the balloon, which allows the virtual machine to consume additional memory if needed (used by VM memory control driver). In case of an error all VMs with their vmmemctl values will be displayed.
3370
3371 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3372
3373 Name                    | Description
3374 ------------------------|--------------
3375 vmware_host             | **Required.** ESX or ESXi hostname.
3376 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3377 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3378 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3379 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3380 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3381 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3382 vmware_sessionfile      | **Optional.** Session file name enhancement.
3383 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3384 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3385 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3386 vmware_password         | **Optional.** The username's password. No value defined as default.
3387 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3388 vmware_warn             | **Optional.** The warning threshold in percent. No value defined as default.
3389 vmware_crit             | **Optional.** The critical threshold in percent. No value defined as default.
3390 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
3391
3392
3393 **vmware-esx-soap-host-net**
3394
3395 Check command object for the `check_vmware_esx` plugin. Shows net info.
3396
3397 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3398
3399 Name                    | Description
3400 ------------------------|--------------
3401 vmware_host             | **Required.** ESX or ESXi hostname.
3402 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3403 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3404 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3405 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3406 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3407 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3408 vmware_sessionfile      | **Optional.** Session file name enhancement.
3409 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3410 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3411 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3412 vmware_password         | **Optional.** The username's password. No value defined as default.
3413 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3414 vmware_exclude          | **Optional.** Blacklist NICs. No value defined as default.
3415 vmware_isregexp         | **Optional.** Treat blacklist expression as regexp.
3416
3417
3418 **vmware-esx-soap-host-net-usage**
3419
3420 Check command object for the `check_vmware_esx` plugin. Overall network usage in KBps(Kilobytes per Second).
3421
3422 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3423
3424 Name                    | Description
3425 ------------------------|--------------
3426 vmware_host             | **Required.** ESX or ESXi hostname.
3427 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3428 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3429 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3430 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3431 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3432 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3433 vmware_sessionfile      | **Optional.** Session file name enhancement.
3434 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3435 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3436 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3437 vmware_password         | **Optional.** The username's password. No value defined as default.
3438 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3439 vmware_warn             | **Optional.** The warning threshold in KBps(Kilobytes per Second). No value defined as default.
3440 vmware_crit             | **Optional.** The critical threshold in KBps(Kilobytes per Second). No value defined as default.
3441
3442
3443 **vmware-esx-soap-host-net-receive**
3444
3445 Check command object for the `check_vmware_esx` plugin. Data receive in KBps(Kilobytes per Second).
3446
3447 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3448
3449 Name                    | Description
3450 ------------------------|--------------
3451 vmware_host             | **Required.** ESX or ESXi hostname.
3452 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3453 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3454 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3455 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3456 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3457 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3458 vmware_sessionfile      | **Optional.** Session file name enhancement.
3459 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3460 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3461 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3462 vmware_password         | **Optional.** The username's password. No value defined as default.
3463 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3464 vmware_warn             | **Optional.** The warning threshold in KBps(Kilobytes per Second). No value defined as default.
3465 vmware_crit             | **Optional.** The critical threshold in KBps(Kilobytes per Second). No value defined as default.
3466
3467
3468 **vmware-esx-soap-host-net-send**
3469
3470 Check command object for the `check_vmware_esx` plugin. Data send in KBps(Kilobytes per Second).
3471
3472 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3473
3474 Name                    | Description
3475 ------------------------|--------------
3476 vmware_host             | **Required.** ESX or ESXi hostname.
3477 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3478 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3479 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3480 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3481 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3482 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3483 vmware_sessionfile      | **Optional.** Session file name enhancement.
3484 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3485 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3486 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3487 vmware_password         | **Optional.** The username's password. No value defined as default.
3488 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3489 vmware_warn             | **Optional.** The warning threshold in KBps(Kilobytes per Second). No value defined as default.
3490 vmware_crit             | **Optional.** The critical threshold in KBps(Kilobytes per Second). No value defined as default.
3491
3492
3493 **vmware-esx-soap-host-net-nic**
3494
3495 Check command object for the `check_vmware_esx` plugin. Check all active NICs.
3496
3497 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3498
3499 Name                    | Description
3500 ------------------------|--------------
3501 vmware_host             | **Required.** ESX or ESXi hostname.
3502 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3503 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3504 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3505 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3506 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3507 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3508 vmware_sessionfile      | **Optional.** Session file name enhancement.
3509 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3510 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3511 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3512 vmware_password         | **Optional.** The username's password. No value defined as default.
3513 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3514 vmware_exclude          | **Optional.** Blacklist NICs. No value defined as default.
3515 vmware_isregexp         | **Optional.** Treat blacklist expression as regexp.
3516
3517
3518 **vmware-esx-soap-host-volumes**
3519
3520 Check command object for the `check_vmware_esx` plugin. Shows all datastore volumes info.
3521
3522 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3523
3524 Name                    | Description
3525 ------------------------|--------------
3526 vmware_host             | **Required.** ESX or ESXi hostname.
3527 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3528 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3529 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3530 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3531 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3532 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3533 vmware_sessionfile      | **Optional.** Session file name enhancement.
3534 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3535 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3536 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3537 vmware_password         | **Optional.** The username's password. No value defined as default.
3538 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3539 vmware_subselect        | **Optional.** Volume name to be checked the free space.
3540 vmware_gigabyte         | **Optional.** Output in GB instead of MB.
3541 vmware_usedspace        | **Optional.** Output used space instead of free. Defaults to "false".
3542 vmware_alertonly        | **Optional.** List only alerting volumes. Defaults to "false".
3543 vmware_exclude          | **Optional.** Blacklist volumes name. No value defined as default.
3544 vmware_include          | **Optional.** Whitelist volumes name. No value defined as default.
3545 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3546 vmware_warn             | **Optional.** The warning threshold for volumes. Defaults to "80%".
3547 vmware_crit             | **Optional.** The critical threshold for volumes. Defaults to "90%".
3548 vmware_spaceleft        | **Optional.** This has to be used in conjunction with thresholds as mentioned above.
3549
3550
3551 **vmware-esx-soap-host-io**
3552
3553 Check command object for the `check_vmware_esx` plugin. Shows all disk io info. Without subselect no thresholds can be given. All I/O values are aggregated from historical intervals over the past 24 hours with a 5 minute sample rate.
3554
3555 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3556
3557 Name                    | Description
3558 ------------------------|--------------
3559 vmware_host             | **Required.** ESX or ESXi hostname.
3560 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3561 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3562 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3563 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3564 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3565 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3566 vmware_sessionfile      | **Optional.** Session file name enhancement.
3567 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3568 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3569 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3570 vmware_password         | **Optional.** The username's password. No value defined as default.
3571 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3572
3573
3574 **vmware-esx-soap-host-io-aborted**
3575
3576 Check command object for the `check_vmware_esx` plugin. Number of aborted SCSI commands.
3577
3578 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3579
3580 Name                    | Description
3581 ------------------------|--------------
3582 vmware_host             | **Required.** ESX or ESXi hostname.
3583 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3584 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3585 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3586 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3587 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3588 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3589 vmware_sessionfile      | **Optional.** Session file name enhancement.
3590 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3591 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3592 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3593 vmware_password         | **Optional.** The username's password. No value defined as default.
3594 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3595 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3596 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3597
3598
3599 **vmware-esx-soap-host-io-resets**
3600
3601 Check command object for the `check_vmware_esx` plugin. Number of SCSI bus resets.
3602
3603 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3604
3605 Name                    | Description
3606 ------------------------|--------------
3607 vmware_host             | **Required.** ESX or ESXi hostname.
3608 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3609 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3610 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3611 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3612 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3613 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3614 vmware_sessionfile      | **Optional.** Session file name enhancement.
3615 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3616 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3617 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3618 vmware_password         | **Optional.** The username's password. No value defined as default.
3619 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3620 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3621 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3622
3623
3624 **vmware-esx-soap-host-io-read**
3625
3626 Check command object for the `check_vmware_esx` plugin. Average number of kilobytes read from the disk each second.
3627
3628 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3629
3630 Name                    | Description
3631 ------------------------|--------------
3632 vmware_host             | **Required.** ESX or ESXi hostname.
3633 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3634 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3635 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3636 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3637 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3638 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3639 vmware_sessionfile      | **Optional.** Session file name enhancement.
3640 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3641 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3642 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3643 vmware_password         | **Optional.** The username's password. No value defined as default.
3644 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3645 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3646 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3647
3648
3649 **vmware-esx-soap-host-io-read-latency**
3650
3651 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) to process a SCSI read command issued from the Guest OS to the virtual machine.
3652
3653 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3654
3655 Name                    | Description
3656 ------------------------|--------------
3657 vmware_host             | **Required.** ESX or ESXi hostname.
3658 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3659 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3660 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3661 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3662 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3663 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3664 vmware_sessionfile      | **Optional.** Session file name enhancement.
3665 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3666 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3667 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3668 vmware_password         | **Optional.** The username's password. No value defined as default.
3669 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3670 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3671 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3672
3673
3674 **vmware-esx-soap-host-io-write**
3675
3676 Check command object for the `check_vmware_esx` plugin. Average number of kilobytes written to disk each second.
3677
3678 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3679
3680 Name                    | Description
3681 ------------------------|--------------
3682 vmware_host             | **Required.** ESX or ESXi hostname.
3683 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3684 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3685 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3686 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3687 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3688 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3689 vmware_sessionfile      | **Optional.** Session file name enhancement.
3690 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3691 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3692 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3693 vmware_password         | **Optional.** The username's password. No value defined as default.
3694 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3695 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3696 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3697
3698
3699 **vmware-esx-soap-host-io-write-latency**
3700
3701 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) taken to process a SCSI write command issued by the Guest OS to the virtual machine.
3702
3703 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3704
3705 Name                    | Description
3706 ------------------------|--------------
3707 vmware_host             | **Required.** ESX or ESXi hostname.
3708 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3709 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3710 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3711 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3712 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3713 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3714 vmware_sessionfile      | **Optional.** Session file name enhancement.
3715 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3716 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3717 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3718 vmware_password         | **Optional.** The username's password. No value defined as default.
3719 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3720 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3721 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3722
3723
3724 **vmware-esx-soap-host-io-usage**
3725
3726 Check command object for the `check_vmware_esx` plugin. Aggregated disk I/O rate. For hosts, this metric includes the rates for all virtual machines running on the host.
3727
3728 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3729
3730 Name                    | Description
3731 ------------------------|--------------
3732 vmware_host             | **Required.** ESX or ESXi hostname.
3733 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3734 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3735 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3736 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3737 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3738 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3739 vmware_sessionfile      | **Optional.** Session file name enhancement.
3740 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3741 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3742 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3743 vmware_password         | **Optional.** The username's password. No value defined as default.
3744 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3745 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3746 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3747
3748
3749 **vmware-esx-soap-host-io-kernel-latency**
3750
3751 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) spent by VMkernel processing each SCSI command.
3752
3753 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3754
3755 Name                    | Description
3756 ------------------------|--------------
3757 vmware_host             | **Required.** ESX or ESXi hostname.
3758 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3759 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3760 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3761 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3762 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3763 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3764 vmware_sessionfile      | **Optional.** Session file name enhancement.
3765 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3766 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3767 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3768 vmware_password         | **Optional.** The username's password. No value defined as default.
3769 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3770 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3771 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3772
3773
3774 **vmware-esx-soap-host-io-device-latency**
3775
3776 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) to complete a SCSI command from the physical device.
3777
3778 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3779
3780 Name                    | Description
3781 ------------------------|--------------
3782 vmware_host             | **Required.** ESX or ESXi hostname.
3783 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3784 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3785 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3786 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3787 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3788 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3789 vmware_sessionfile      | **Optional.** Session file name enhancement.
3790 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3791 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3792 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3793 vmware_password         | **Optional.** The username's password. No value defined as default.
3794 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3795 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3796 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3797
3798
3799 **vmware-esx-soap-host-io-queue-latency**
3800
3801 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) spent in the VMkernel queue.
3802
3803 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3804
3805 Name                    | Description
3806 ------------------------|--------------
3807 vmware_host             | **Required.** ESX or ESXi hostname.
3808 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3809 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3810 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3811 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3812 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3813 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3814 vmware_sessionfile      | **Optional.** Session file name enhancement.
3815 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3816 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3817 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3818 vmware_password         | **Optional.** The username's password. No value defined as default.
3819 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3820 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3821 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3822
3823
3824 **vmware-esx-soap-host-io-total-latency**
3825
3826 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) taken during the collection interval to process a SCSI command issued by the guest OS to the virtual machine. The sum of kernelWriteLatency and deviceWriteLatency.
3827
3828 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3829
3830 Name                    | Description
3831 ------------------------|--------------
3832 vmware_host             | **Required.** ESX or ESXi hostname.
3833 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3834 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3835 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3836 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3837 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3838 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3839 vmware_sessionfile      | **Optional.** Session file name enhancement.
3840 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3841 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3842 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3843 vmware_password         | **Optional.** The username's password. No value defined as default.
3844 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3845 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3846 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3847
3848
3849 **vmware-esx-soap-host-media**
3850
3851 Check command object for the `check_vmware_esx` plugin. List vm's with attached host mounted media like cd,dvd or floppy drives. This is important for monitoring because a virtual machine with a mount cd or dvd drive can not be moved to another host.
3852
3853 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3854
3855 Name                    | Description
3856 ------------------------|--------------
3857 vmware_host             | **Required.** ESX or ESXi hostname.
3858 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3859 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3860 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3861 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3862 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3863 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3864 vmware_sessionfile      | **Optional.** Session file name enhancement.
3865 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3866 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3867 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3868 vmware_password         | **Optional.** The username's password. No value defined as default.
3869 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3870 vmware_exclude          | **Optional.** Blacklist VMs name. No value defined as default.
3871 vmware_include          | **Optional.** Whitelist VMs name. No value defined as default.
3872 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3873 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
3874
3875
3876 **vmware-esx-soap-host-service**
3877
3878 Check command object for the `check_vmware_esx` plugin. Shows host service info.
3879
3880 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3881
3882 Name                    | Description
3883 ------------------------|--------------
3884 vmware_host             | **Required.** ESX or ESXi hostname.
3885 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3886 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3887 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3888 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3889 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3890 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3891 vmware_sessionfile      | **Optional.** Session file name enhancement.
3892 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3893 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3894 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3895 vmware_password         | **Optional.** The username's password. No value defined as default.
3896 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3897 vmware_exclude          | **Optional.** Blacklist services name. No value defined as default.
3898 vmware_include          | **Optional.** Whitelist services name. No value defined as default.
3899 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3900 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
3901
3902
3903 **vmware-esx-soap-host-runtime**
3904
3905 Check command object for the `check_vmware_esx` plugin. Shows runtime info: VMs, overall status, connection state, health, storagehealth, temperature and sensor are represented as one value and without thresholds.
3906
3907 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3908
3909 Name                    | Description
3910 ------------------------|--------------
3911 vmware_host             | **Required.** ESX or ESXi hostname.
3912 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3913 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3914 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3915 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3916 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3917 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3918 vmware_sessionfile      | **Optional.** Session file name enhancement.
3919 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3920 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3921 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3922 vmware_password         | **Optional.** The username's password. No value defined as default.
3923 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3924
3925
3926 **vmware-esx-soap-host-runtime-con**
3927
3928 Check command object for the `check_vmware_esx` plugin. Shows connection state.
3929
3930 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3931
3932 Name                    | Description
3933 ------------------------|--------------
3934 vmware_host             | **Required.** ESX or ESXi hostname.
3935 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3936 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3937 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3938 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3939 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3940 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3941 vmware_sessionfile      | **Optional.** Session file name enhancement.
3942 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3943 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3944 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3945 vmware_password         | **Optional.** The username's password. No value defined as default.
3946 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3947
3948
3949 **vmware-esx-soap-host-runtime-listvms**
3950
3951 Check command object for the `check_vmware_esx` plugin. List of VMware machines and their status.
3952
3953 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3954
3955 Name                    | Description
3956 ------------------------|--------------
3957 vmware_host             | **Required.** ESX or ESXi hostname.
3958 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3959 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3960 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3961 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3962 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3963 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3964 vmware_sessionfile      | **Optional.** Session file name enhancement.
3965 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3966 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3967 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3968 vmware_password         | **Optional.** The username's password. No value defined as default.
3969 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3970 vmware_exclude          | **Optional.** Blacklist VMs name. No value defined as default.
3971 vmware_include          | **Optional.** Whitelist VMs name. No value defined as default.
3972 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3973 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
3974
3975
3976 **vmware-esx-soap-host-runtime-status**
3977
3978 Check command object for the `check_vmware_esx` plugin. Overall object status (gray/green/red/yellow).
3979
3980 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3981
3982 Name                    | Description
3983 ------------------------|--------------
3984 vmware_host             | **Required.** ESX or ESXi hostname.
3985 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3986 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3987 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
3988 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
3989 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3990 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3991 vmware_sessionfile      | **Optional.** Session file name enhancement.
3992 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3993 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3994 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3995 vmware_password         | **Optional.** The username's password. No value defined as default.
3996 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
3997
3998
3999 **vmware-esx-soap-host-runtime-health**
4000
4001 Check command object for the `check_vmware_esx` plugin. Checks cpu/storage/memory/sensor status.
4002
4003 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4004
4005 Name                    | Description
4006 ------------------------|--------------
4007 vmware_host             | **Required.** ESX or ESXi hostname.
4008 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4009 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4010 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4011 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4012 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4013 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4014 vmware_sessionfile      | **Optional.** Session file name enhancement.
4015 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4016 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4017 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4018 vmware_password         | **Optional.** The username's password. No value defined as default.
4019 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4020 vmware_exclude          | **Optional.** Blacklist status name. No value defined as default.
4021 vmware_include          | **Optional.** Whitelist status name. No value defined as default.
4022 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4023
4024
4025 **vmware-esx-soap-host-runtime-health-listsensors**
4026
4027 Check command object for the `check_vmware_esx` plugin. List all available sensors(use for listing purpose only).
4028
4029 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4030
4031 Name                    | Description
4032 ------------------------|--------------
4033 vmware_host             | **Required.** ESX or ESXi hostname.
4034 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4035 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4036 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4037 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4038 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4039 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4040 vmware_sessionfile      | **Optional.** Session file name enhancement.
4041 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4042 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4043 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4044 vmware_password         | **Optional.** The username's password. No value defined as default.
4045 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4046 vmware_exclude          | **Optional.** Blacklist status name. No value defined as default.
4047 vmware_include          | **Optional.** Whitelist status name. No value defined as default.
4048 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4049
4050
4051 **vmware-esx-soap-host-runtime-health-nostoragestatus**
4052
4053 Check command object for the `check_vmware_esx` plugin. This is to avoid a double alarm if you use **vmware-esx-soap-host-runtime-health** and **vmware-esx-soap-host-runtime-storagehealth**.
4054
4055 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4056
4057 Name                    | Description
4058 ------------------------|--------------
4059 vmware_host             | **Required.** ESX or ESXi hostname.
4060 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4061 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4062 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4063 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4064 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4065 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4066 vmware_sessionfile      | **Optional.** Session file name enhancement.
4067 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4068 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4069 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4070 vmware_password         | **Optional.** The username's password. No value defined as default.
4071 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4072 vmware_exclude          | **Optional.** Blacklist status name. No value defined as default.
4073 vmware_include          | **Optional.** Whitelist status name. No value defined as default.
4074 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4075
4076
4077 **vmware-esx-soap-host-runtime-storagehealth**
4078
4079 Check command object for the `check_vmware_esx` plugin. Local storage status check.
4080
4081 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4082
4083 Name                    | Description
4084 ------------------------|--------------
4085 vmware_host             | **Required.** ESX or ESXi hostname.
4086 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4087 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4088 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4089 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4090 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4091 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4092 vmware_sessionfile      | **Optional.** Session file name enhancement.
4093 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4094 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4095 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4096 vmware_password         | **Optional.** The username's password. No value defined as default.
4097 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4098 vmware_exclude          | **Optional.** Blacklist storage name. No value defined as default.
4099 vmware_include          | **Optional.** Whitelist storage name. No value defined as default.
4100 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4101 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
4102
4103
4104 **vmware-esx-soap-host-runtime-temp**
4105
4106 Check command object for the `check_vmware_esx` plugin. Lists all temperature sensors.
4107
4108 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4109
4110 Name                    | Description
4111 ------------------------|--------------
4112 vmware_host             | **Required.** ESX or ESXi hostname.
4113 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4114 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4115 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4116 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4117 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4118 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4119 vmware_sessionfile      | **Optional.** Session file name enhancement.
4120 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4121 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4122 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4123 vmware_password         | **Optional.** The username's password. No value defined as default.
4124 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4125 vmware_exclude          | **Optional.** Blacklist sensor name. No value defined as default.
4126 vmware_include          | **Optional.** Whitelist sensor name. No value defined as default.
4127 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4128 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
4129
4130
4131 **vmware-esx-soap-host-runtime-issues**
4132
4133 Check command object for the `check_vmware_esx` plugin. Lists all configuration issues for the host.
4134
4135 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4136
4137 Name                    | Description
4138 ------------------------|--------------
4139 vmware_host             | **Required.** ESX or ESXi hostname.
4140 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4141 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4142 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4143 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4144 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4145 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4146 vmware_sessionfile      | **Optional.** Session file name enhancement.
4147 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4148 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4149 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4150 vmware_password         | **Optional.** The username's password. No value defined as default.
4151 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4152 vmware_exclude          | **Optional.** Blacklist configuration issues. No value defined as default.
4153 vmware_include          | **Optional.** Whitelist configuration issues. No value defined as default.
4154 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4155 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
4156
4157
4158 **vmware-esx-soap-host-storage**
4159
4160 Check command object for the `check_vmware_esx` plugin. Shows Host storage info.
4161
4162 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4163
4164 Name                    | Description
4165 ------------------------|--------------
4166 vmware_host             | **Required.** ESX or ESXi hostname.
4167 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4168 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4169 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4170 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4171 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4172 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4173 vmware_sessionfile      | **Optional.** Session file name enhancement.
4174 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4175 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4176 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4177 vmware_password         | **Optional.** The username's password. No value defined as default.
4178 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4179 vmware_exclude          | **Optional.** Blacklist adapters, luns and paths. No value defined as default.
4180 vmware_include          | **Optional.** Whitelist adapters, luns and paths. No value defined as default.
4181 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4182
4183
4184 **vmware-esx-soap-host-storage-adapter**
4185
4186 Check command object for the `check_vmware_esx` plugin. List host bus adapters.
4187
4188 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4189
4190 Name                    | Description
4191 ------------------------|--------------
4192 vmware_host             | **Required.** ESX or ESXi hostname.
4193 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4194 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4195 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4196 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4197 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4198 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4199 vmware_sessionfile      | **Optional.** Session file name enhancement.
4200 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4201 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4202 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4203 vmware_password         | **Optional.** The username's password. No value defined as default.
4204 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4205 vmware_exclude          | **Optional.** Blacklist adapters. No value defined as default.
4206 vmware_include          | **Optional.** Whitelist adapters. No value defined as default.
4207 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4208 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
4209
4210
4211 **vmware-esx-soap-host-storage-lun**
4212
4213 Check command object for the `check_vmware_esx` plugin. List SCSI logical units. The listing will include: LUN, canonical name of the disc, all of displayed name which is not part of the canonical name and status.
4214
4215 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4216
4217 Name                    | Description
4218 ------------------------|--------------
4219 vmware_host             | **Required.** ESX or ESXi hostname.
4220 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4221 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4222 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4223 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4224 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4225 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4226 vmware_sessionfile      | **Optional.** Session file name enhancement.
4227 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4228 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4229 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4230 vmware_password         | **Optional.** The username's password. No value defined as default.
4231 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4232 vmware_exclude          | **Optional.** Blacklist luns. No value defined as default.
4233 vmware_include          | **Optional.** Whitelist luns. No value defined as default.
4234 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4235 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
4236
4237
4238 **vmware-esx-soap-host-storage-path**
4239
4240 Check command object for the `check_vmware_esx` plugin. List multipaths and the associated paths.
4241
4242 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4243
4244 Name                    | Description
4245 ------------------------|--------------
4246 vmware_host             | **Required.** ESX or ESXi hostname.
4247 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4248 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4249 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4250 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4251 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4252 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4253 vmware_sessionfile      | **Optional.** Session file name enhancement.
4254 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4255 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4256 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4257 vmware_password         | **Optional.** The username's password. No value defined as default.
4258 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4259 vmware_alertonly        | **Optional.** List only alerting units. Important here to avoid masses of data. Defaults to "false".
4260 vmware_exclude          | **Optional.** Blacklist paths. No value defined as default.
4261 vmware_include          | **Optional.** Whitelist paths. No value defined as default.
4262 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4263 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
4264 vmware_standbyok        | **Optional.** For storage systems where a standby multipath is ok and not a warning. Defaults to false.
4265
4266
4267 **vmware-esx-soap-vm-cpu**
4268
4269 Check command object for the `check_vmware_esx` plugin. Shows all CPU usage info.
4270
4271 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4272
4273 Name                    | Description
4274 ------------------------|--------------
4275 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4276 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4277 vmware_vmname           | **Required.** Virtual machine name.
4278 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4279 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4280 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4281 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4282 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4283 vmware_sessionfile      | **Optional.** Session file name enhancement.
4284 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4285 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4286 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4287 vmware_password         | **Optional.** The username's password. No value defined as default.
4288 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4289
4290
4291
4292 **vmware-esx-soap-vm-cpu-ready**
4293
4294 Check command object for the `check_vmware_esx` plugin. Percentage of time that the virtual machine was ready, but could not get scheduled to run on the physical CPU.
4295
4296 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4297
4298 Name                    | Description
4299 ------------------------|--------------
4300 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4301 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4302 vmware_vmname           | **Required.** Virtual machine name.
4303 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4304 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4305 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4306 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4307 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4308 vmware_sessionfile      | **Optional.** Session file name enhancement.
4309 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4310 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4311 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4312 vmware_password         | **Optional.** The username's password. No value defined as default.
4313 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4314 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4315 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4316
4317
4318 **vmware-esx-soap-vm-cpu-wait**
4319
4320 Check command object for the `check_vmware_esx` plugin. CPU time spent in wait state. The wait total includes time spent the CPU idle, CPU swap wait, and CPU I/O wait states. High or growing wait time can be a hint I/O bottlenecks.
4321
4322 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4323
4324 Name                    | Description
4325 ------------------------|--------------
4326 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4327 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4328 vmware_vmname           | **Required.** Virtual machine name.
4329 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4330 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4331 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4332 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4333 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4334 vmware_sessionfile      | **Optional.** Session file name enhancement.
4335 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4336 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4337 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4338 vmware_password         | **Optional.** The username's password. No value defined as default.
4339 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4340 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4341 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4342
4343
4344 **vmware-esx-soap-vm-cpu-usage**
4345
4346 Check command object for the `check_vmware_esx` plugin. Amount of actively used virtual CPU, as a percentage of total available CPU. This is the host's view of the CPU usage, not the guest operating system view. It is the average CPU utilization over all available virtual CPUs in the virtual machine.
4347
4348 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4349
4350 Name                    | Description
4351 ------------------------|--------------
4352 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4353 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4354 vmware_vmname           | **Required.** Virtual machine name.
4355 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4356 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4357 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4358 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4359 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4360 vmware_sessionfile      | **Optional.** Session file name enhancement.
4361 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4362 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4363 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4364 vmware_password         | **Optional.** The username's password. No value defined as default.
4365 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4366 vmware_warn             | **Optional.** Warning threshold in percent. Defaults to "80%".
4367 vmware_crit             | **Optional.** Critical threshold in percent. Defaults to "90%".
4368
4369
4370 **vmware-esx-soap-vm-mem**
4371
4372 Check command object for the `check_vmware_esx` plugin. Shows all memory info, except overall.
4373
4374 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4375
4376 Name                    | Description
4377 ------------------------|--------------
4378 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4379 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4380 vmware_vmname           | **Required.** Virtual machine name.
4381 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4382 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4383 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4384 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4385 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4386 vmware_sessionfile      | **Optional.** Session file name enhancement.
4387 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4388 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4389 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4390 vmware_password         | **Optional.** The username's password. No value defined as default.
4391 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4392
4393
4394 **vmware-esx-soap-vm-mem-usage**
4395
4396 Check command object for the `check_vmware_esx` plugin. Average mem usage in percentage of configured virtual machine "physical" memory.
4397
4398 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4399
4400 Name                    | Description
4401 ------------------------|--------------
4402 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4403 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4404 vmware_vmname           | **Required.** Virtual machine name.
4405 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4406 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4407 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4408 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4409 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4410 vmware_sessionfile      | **Optional.** Session file name enhancement.
4411 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4412 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4413 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4414 vmware_password         | **Optional.** The username's password. No value defined as default.
4415 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4416 vmware_warn             | **Optional.** Warning threshold in percent. Defaults to "80%".
4417 vmware_crit             | **Optional.** Critical threshold in percent. Defaults to "90%".
4418
4419
4420 **vmware-esx-soap-vm-mem-consumed**
4421
4422 Check command object for the `check_vmware_esx` plugin. Amount of guest physical memory in MB consumed by the virtual machine for guest memory. Consumed memory does not include overhead memory. It includes shared memory and memory that might be reserved, but not actually used. Use this metric for charge-back purposes.<br>
4423 **vm consumed memory = memory granted -- memory saved**
4424
4425 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4426
4427 Name                    | Description
4428 ------------------------|--------------
4429 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4430 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4431 vmware_vmname           | **Required.** Virtual machine name.
4432 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4433 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4434 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4435 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4436 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4437 vmware_sessionfile      | **Optional.** Session file name enhancement.
4438 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4439 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4440 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4441 vmware_password         | **Optional.** The username's password. No value defined as default.
4442 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4443 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4444 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4445
4446
4447 **vmware-esx-soap-vm-mem-memctl**
4448
4449 Check command object for the `check_vmware_esx` plugin. Amount of guest physical memory that is currently reclaimed from the virtual machine through ballooning. This is the amount of guest physical memory that has been allocated and pinned by the balloon driver.
4450
4451 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4452
4453 Name                    | Description
4454 ------------------------|--------------
4455 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4456 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4457 vmware_vmname           | **Required.** Virtual machine name.
4458 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4459 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4460 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4461 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4462 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4463 vmware_sessionfile      | **Optional.** Session file name enhancement.
4464 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4465 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4466 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4467 vmware_password         | **Optional.** The username's password. No value defined as default.
4468 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4469 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4470 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4471
4472
4473
4474 **vmware-esx-soap-vm-net**
4475
4476 Check command object for the `check_vmware_esx` plugin. Shows net info.
4477
4478 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4479
4480 Name                    | Description
4481 ------------------------|--------------
4482 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4483 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4484 vmware_vmname           | **Required.** Virtual machine name.
4485 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4486 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4487 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4488 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4489 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4490 vmware_sessionfile      | **Optional.** Session file name enhancement.
4491 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4492 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4493 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4494 vmware_password         | **Optional.** The username's password. No value defined as default.
4495 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4496
4497
4498 **vmware-esx-soap-vm-net-usage**
4499
4500 Check command object for the `check_vmware_esx` plugin. Overall network usage in KBps(Kilobytes per Second).
4501
4502 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4503
4504 Name                    | Description
4505 ------------------------|--------------
4506 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4507 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4508 vmware_vmname           | **Required.** Virtual machine name.
4509 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4510 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4511 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4512 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4513 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4514 vmware_sessionfile      | **Optional.** Session file name enhancement.
4515 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4516 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4517 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4518 vmware_password         | **Optional.** The username's password. No value defined as default.
4519 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4520 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4521 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4522
4523
4524 **vmware-esx-soap-vm-net-receive**
4525
4526 Check command object for the `check_vmware_esx` plugin. Receive in KBps(Kilobytes per Second).
4527
4528 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4529
4530 Name                    | Description
4531 ------------------------|--------------
4532 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4533 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4534 vmware_vmname           | **Required.** Virtual machine name.
4535 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4536 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4537 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4538 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4539 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4540 vmware_sessionfile      | **Optional.** Session file name enhancement.
4541 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4542 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4543 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4544 vmware_password         | **Optional.** The username's password. No value defined as default.
4545 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4546 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4547 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4548
4549
4550 **vmware-esx-soap-vm-net-send**
4551
4552 Check command object for the `check_vmware_esx` plugin. Send in KBps(Kilobytes per Second).
4553
4554 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4555
4556 Name                    | Description
4557 ------------------------|--------------
4558 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4559 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4560 vmware_vmname           | **Required.** Virtual machine name.
4561 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4562 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4563 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4564 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4565 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4566 vmware_sessionfile      | **Optional.** Session file name enhancement.
4567 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4568 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4569 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4570 vmware_password         | **Optional.** The username's password. No value defined as default.
4571 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4572 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4573 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4574
4575
4576 **vmware-esx-soap-vm-io**
4577
4578 Check command object for the `check_vmware_esx` plugin. SShows all disk io info. Without subselect no thresholds can be given. All I/O values are aggregated from historical intervals over the past 24 hours with a 5 minute sample rate.
4579
4580 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4581
4582 Name                    | Description
4583 ------------------------|--------------
4584 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4585 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4586 vmware_vmname           | **Required.** Virtual machine name.
4587 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4588 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4589 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4590 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4591 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4592 vmware_sessionfile      | **Optional.** Session file name enhancement.
4593 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4594 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4595 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4596 vmware_password         | **Optional.** The username's password. No value defined as default.
4597 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4598
4599
4600 **vmware-esx-soap-vm-io-read**
4601
4602 Check command object for the `check_vmware_esx` plugin. Average number of kilobytes read from the disk each second.
4603
4604 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4605
4606 Name                    | Description
4607 ------------------------|--------------
4608 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4609 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4610 vmware_vmname           | **Required.** Virtual machine name.
4611 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4612 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4613 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4614 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4615 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4616 vmware_sessionfile      | **Optional.** Session file name enhancement.
4617 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4618 vmware_nosession        | **Optional.** No auth session - IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4619 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4620 vmware_password         | **Optional.** The username's password. No value defined as default.
4621 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4622 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4623 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4624
4625
4626 **vmware-esx-soap-vm-io-write**
4627
4628 Check command object for the `check_vmware_esx` plugin. Average number of kilobytes written to disk each second.
4629
4630 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4631
4632 Name                    | Description
4633 ------------------------|--------------
4634 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4635 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4636 vmware_vmname           | **Required.** Virtual machine name.
4637 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4638 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4639 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4640 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4641 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4642 vmware_sessionfile      | **Optional.** Session file name enhancement.
4643 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4644 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4645 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4646 vmware_password         | **Optional.** The username's password. No value defined as default.
4647 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4648 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4649 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4650
4651
4652 **vmware-esx-soap-vm-io-usage**
4653
4654 Check command object for the `check_vmware_esx` plugin. Aggregated disk I/O rate.
4655
4656 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4657
4658 Name                    | Description
4659 ------------------------|--------------
4660 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4661 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4662 vmware_vmname           | **Required.** Virtual machine name.
4663 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4664 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4665 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4666 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4667 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4668 vmware_sessionfile      | **Optional.** Session file name enhancement.
4669 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4670 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4671 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4672 vmware_password         | **Optional.** The username's password. No value defined as default.
4673 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4674 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4675 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4676
4677
4678 **vmware-esx-soap-vm-runtime**
4679
4680 Check command object for the `check_vmware_esx` plugin. Shows virtual machine runtime info.
4681
4682 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4683
4684 Name                    | Description
4685 ------------------------|--------------
4686 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4687 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4688 vmware_vmname           | **Required.** Virtual machine name.
4689 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4690 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4691 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4692 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4693 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4694 vmware_sessionfile      | **Optional.** Session file name enhancement.
4695 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4696 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4697 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4698 vmware_password         | **Optional.** The username's password. No value defined as default.
4699 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4700
4701
4702 **vmware-esx-soap-vm-runtime-con**
4703
4704 Check command object for the `check_vmware_esx` plugin. Shows the connection state.
4705
4706 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4707
4708 Name                    | Description
4709 ------------------------|--------------
4710 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4711 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4712 vmware_vmname           | **Required.** Virtual machine name.
4713 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4714 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4715 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4716 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4717 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4718 vmware_sessionfile      | **Optional.** Session file name enhancement.
4719 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4720 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4721 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4722 vmware_password         | **Optional.** The username's password. No value defined as default.
4723 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4724
4725
4726 **vmware-esx-soap-vm-runtime-powerstate**
4727
4728 Check command object for the `check_vmware_esx` plugin. Shows virtual machine power state: poweredOn, poweredOff or suspended.
4729
4730 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4731
4732 Name                    | Description
4733 ------------------------|--------------
4734 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4735 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4736 vmware_vmname           | **Required.** Virtual machine name.
4737 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4738 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4739 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4740 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4741 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4742 vmware_sessionfile      | **Optional.** Session file name enhancement.
4743 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4744 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4745 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4746 vmware_password         | **Optional.** The username's password. No value defined as default.
4747 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4748
4749
4750 **vmware-esx-soap-vm-runtime-status**
4751
4752 Check command object for the `check_vmware_esx` plugin. Overall object status (gray/green/red/yellow).
4753
4754 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4755
4756 Name                    | Description
4757 ------------------------|--------------
4758 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4759 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4760 vmware_vmname           | **Required.** Virtual machine name.
4761 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4762 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4763 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4764 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4765 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4766 vmware_sessionfile      | **Optional.** Session file name enhancement.
4767 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4768 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4769 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4770 vmware_password         | **Optional.** The username's password. No value defined as default.
4771 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4772
4773
4774 **vmware-esx-soap-vm-runtime-consoleconnections**
4775
4776 Check command object for the `check_vmware_esx` plugin. Console connections to virtual machine.
4777
4778 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4779
4780 Name                    | Description
4781 ------------------------|--------------
4782 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4783 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4784 vmware_vmname           | **Required.** Virtual machine name.
4785 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4786 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4787 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4788 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4789 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4790 vmware_sessionfile      | **Optional.** Session file name enhancement.
4791 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4792 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4793 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4794 vmware_password         | **Optional.** The username's password. No value defined as default.
4795 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4796 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4797 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4798
4799
4800 **vmware-esx-soap-vm-runtime-gueststate**
4801
4802 Check command object for the `check_vmware_esx` plugin. Guest OS status. Needs VMware Tools installed and running.
4803
4804 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4805
4806 Name                    | Description
4807 ------------------------|--------------
4808 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4809 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4810 vmware_vmname           | **Required.** Virtual machine name.
4811 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4812 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4813 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4814 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4815 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4816 vmware_sessionfile      | **Optional.** Session file name enhancement.
4817 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4818 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4819 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4820 vmware_password         | **Optional.** The username's password. No value defined as default.
4821 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4822
4823 **vmware-esx-soap-vm-runtime-tools**
4824
4825 Check command object for the `check_vmware_esx` plugin. Guest OS status. VMware tools  status.
4826
4827 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4828
4829 Name                    | Description
4830 ------------------------|--------------
4831 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4832 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4833 vmware_vmname           | **Required.** Virtual machine name.
4834 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4835 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4836 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4837 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4838 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4839 vmware_sessionfile      | **Optional.** Session file name enhancement.
4840 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4841 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4842 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4843 vmware_password         | **Optional.** The username's password. No value defined as default.
4844 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4845 vmware_openvmtools      | **Optional** Prevent CRITICAL state for installed and running Open VM Tools.
4846
4847
4848 **vmware-esx-soap-vm-runtime-issues**
4849
4850 Check command object for the `check_vmware_esx` plugin. All issues for the virtual machine.
4851
4852 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4853
4854 Name                    | Description
4855 ------------------------|--------------
4856 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4857 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4858 vmware_vmname           | **Required.** Virtual machine name.
4859 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4860 vmware_ignoreunknown    | **Optional.** Sometimes 3 (unknown) is returned from a component. But the check itself is ok. With this option the plugin will return OK (0) instead of UNKNOWN (3). Defaults to "false".
4861 vmware_ignorewarning    | **Optional.** Sometimes 2 (warning) is returned from a component. But the check itself is ok (from an operator view). With this option the plugin will return OK (0) instead of WARNING (1). Defaults to "false".
4862 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4863 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4864 vmware_sessionfile      | **Optional.** Session file name enhancement.
4865 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4866 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4867 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4868 vmware_password         | **Optional.** The username's password. No value defined as default.
4869 vmware_authfile         | **Optional.** Use auth file instead username/password to session connect. No effect if **vmware_username** and **vmware_password** are defined <br> **Autentication file content:** <br>  username=vmuser <br> password=p@ssw0rd
4870 vmware_multiline        | **Optional.** Multiline output in overview. This mean technically that a multiline output uses a HTML **\<br\>** for the GUI. No value defined as default.
4871
4872
4873 ### Web <a id="plugin-contrib-web"></a>
4874
4875 This category includes all plugins for web-based checks.
4876
4877 #### apache_status <a id="plugin-contrib-command-apache_status"></a>
4878
4879 The [check_apache_status.pl](https://github.com/lbetz/check_apache_status) plugin
4880 uses the [/server-status](https://httpd.apache.org/docs/current/mod/mod_status.html)
4881 HTTP endpoint to monitor status metrics for the Apache webserver.
4882
4883 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4884
4885 Name                    | Description
4886 ------------------------|----------------------------------------------------------------------------------
4887 apache_status_address   | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, `address6` otherwise.
4888 apache_status_port      | **Optional.** the http port.
4889 apache_status_url       | **Optional.** URL to use, instead of the default (http://`apache_status_address`/server-status).
4890 apache_status_ssl       | **Optional.** set to use ssl connection
4891 apache_status_timeout   | **Optional.** timeout in seconds
4892 apache_status_warning   | **Optional.** Warning threshold (number of open slots, busy workers and idle workers that will cause a WARNING) like ':20,50,:50'.
4893 apache_status_critical  | **Optional.** Critical threshold (number of open slots, busy workers and idle workers that will cause a CRITICAL) like ':10,25,:20'.
4894
4895
4896 ### cert <a id="plugin-check-command-ssl_cert"></a>
4897
4898 The [check_ssl_cert](https://github.com/matteocorti/check_ssl_cert) plugin
4899 uses the openssl binary (and optional curl) to check a X.509 certificate.
4900
4901 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4902
4903 Name                      | Description
4904 --------------------------|--------------
4905 ssl_cert_address              | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
4906 ssl_cert_port                 | **Optional.** TCP port number (default: 443).
4907 ssl_cert_file                 | **Optional.** Local file path. Works only if `ssl_cert_address` is set to "localhost".
4908 ssl_cert_warn                 | **Optional.** Minimum number of days a certificate has to be valid.
4909 ssl_cert_critical             | **Optional.** Minimum number of days a certificate has to be valid to issue a critical status.
4910 ssl_cert_cn                   | **Optional.** Pattern to match the CN of the certificate.
4911 ssl_cert_altnames             | **Optional.** Matches the pattern specified in -n with alternate
4912 ssl_cert_issuer               | **Optional.** Pattern to match the issuer of the certificate.
4913 ssl_cert_org                  | **Optional.** Pattern to match the organization of the certificate.
4914 ssl_cert_email                | **Optional.** Pattern to match the email address contained in the certificate.
4915 ssl_cert_serial               | **Optional.** Pattern to match the serial number.
4916 ssl_cert_noauth               | **Optional.** Ignore authority warnings (expiration only)
4917 ssl_cert_match_host           | **Optional.** Match CN with the host name.
4918 ssl_cert_selfsigned           | **Optional.** Allow self-signed certificate.
4919 ssl_cert_sni                  | **Optional.** Sets the TLS SNI (Server Name Indication) extension.
4920 ssl_cert_timeout              | **Optional.** Seconds before connection times out (default: 15)
4921 ssl_cert_protocol             | **Optional.** Use the specific protocol {http,smtp,pop3,imap,ftp,xmpp,irc,ldap} (default: http).
4922 ssl_cert_clientcert           | **Optional.** Use client certificate to authenticate.
4923 ssl_cert_clientpass           | **Optional.** Set passphrase for client certificate.
4924 ssl_cert_ssllabs              | **Optional.** SSL Labs assestment
4925 ssl_cert_ssllabs_nocache      | **Optional.** Forces a new check by SSL Labs
4926 ssl_cert_rootcert             | **Optional.** Root certificate or directory to be used for certficate validation.
4927 ssl_cert_ignore_signature     | **Optional.** Do not check if the certificate was signed with SHA1 od MD5.
4928 ssl_cert_ssl_version          | **Optional.** Force specific SSL version out of {ssl2,ssl3,tls1,tls1_1,tls1_2}.
4929 ssl_cert_disable_ssl_versions | **Optional.** Disable specific SSL versions out of {ssl2,ssl3,tls1,tls1_1,tls1_2}. Multiple versions can be given as array.
4930 ssl_cert_cipher               | **Optional.** Cipher selection: force {ecdsa,rsa} authentication.
4931 ssl_cert_ignore_expiration    | **Optional.** Ignore expiration date.
4932 ssl_cert_ignore_ocsp          | **Optional.** Do not check revocation with OCSP.
4933
4934
4935 #### jmx4perl <a id="plugin-contrib-command-jmx4perl"></a>
4936
4937 The [check_jmx4perl](http://search.cpan.org/~roland/jmx4perl/scripts/check_jmx4perl) plugin
4938 uses the HTTP API exposed by the [Jolokia](https://jolokia.org)
4939 web application and queries Java message beans on an application server. It is
4940 part of the `JMX::Jmx4Perl` Perl module which includes detailed
4941 [documentation](http://search.cpan.org/~roland/jmx4perl/scripts/check_jmx4perl).
4942
4943 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4944
4945 Name                         | Description
4946 -----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------
4947 jmx4perl_url                 | **Required.** URL to agent web application. Defaults to "http://$address$:8080/jolokia".
4948 jmx4perl_product             | **Optional.** Name of app server product (e.g. jboss), by default is uses an autodetection facility.
4949 jmx4perl_alias               | **Optional.** Alias name for attribute (e.g. MEMORY_HEAP_USED). All availables aliases can be viewed by executing `jmx4perl aliases` on the command line.
4950 jmx4perl_mbean               | **Optional.** MBean name (e.g. java.lang:type=Memory).
4951 jmx4perl_attribute           | **Optional.** Attribute name (e.g. HeapMemoryUsage).
4952 jmx4perl_operation           | **Optional.** Operation to execute.
4953 jmx4perl_value               | **Optional.** Shortcut for specifying mbean/attribute/path. Slashes within names must be escaped with backslash.
4954 jmx4perl_delta               | **Optional.** Switches on incremental mode. Optional argument are seconds used for normalizing.
4955 jmx4perl_path                | **Optional.** Inner path for extracting a single value from a complex attribute or return value (e.g. used).
4956 jmx4perl_target              | **Optional.** JSR-160 Service URL specifing the target server.
4957 jmx4perl_target_user         | **Optional.** Username to use for JSR-160 connection.
4958 jmx4perl_target_password     | **Optional.** Password to use for JSR-160 connection.
4959 jmx4perl_proxy               | **Optional.** Proxy to use.
4960 jmx4perl_user                | **Optional.** User for HTTP authentication.
4961 jmx4perl_password            | **Optional.** Password for HTTP authentication.
4962 jmx4perl_name                | **Optional.** Name to use for output, by default a standard value based on the MBean and attribute will be used.
4963 jmx4perl_method              | **Optional.** HTTP method to use, either get or post. By default a method is determined automatically based on the request type.
4964 jmx4perl_base                | **Optional.** Base name, which when given, interprets critical and warning values as relative in the range 0 .. 100%. Must be given in the form mbean/attribute/path.
4965 jmx4perl_base_mbean          | **Optional.** Base MBean name, interprets critical and warning values as relative in the range 0 .. 100%. Requires "jmx4perl_base_attribute".
4966 jmx4perl_base_attribute      | **Optional.** Base attribute for a relative check. Requires "jmx4perl_base_mbean".
4967 jmx4perl_base_path           | **Optional.** Base path for relative checks, where this path is used on the base attribute's value.
4968 jmx4perl_unit                | **Optional.** Unit of measurement of the data retreived. Recognized values are [B\|KB\|MN\|GB\|TB] for memory values and [us\|ms\|s\|m\|h\|d] for time values.
4969 jmx4perl_null                | **Optional.** Value which should be used in case of a null return value of an operation or attribute. Defaults to null.
4970 jmx4perl_string              | **Optional.** Force string comparison for critical and warning checks. Defaults to false.
4971 jmx4perl_numeric             | **Optional.** Force numeric comparison for critical and warning checks. Defaults to false.
4972 jmx4perl_critical            | **Optional.** Critical threshold for value.
4973 jmx4perl_warning             | **Optional.** Warning threshold for value.
4974 jmx4perl_label               | **Optional.** Label to be used for printing out the result of the check. For placeholders which can be used see the documentation.
4975 jmx4perl_perfdata            | **Optional.** Whether performance data should be omitted, which are included by default. Defaults to "on" for numeric values, to "off" for strings.
4976 jmx4perl_unknown_is_critical | **Optional.** Map UNKNOWN errors to errors with a CRITICAL status. Defaults to false.
4977 jmx4perl_timeout             | **Optional.** Seconds before plugin times out. Defaults to "15".
4978 jmx4perl_config              | **Optional.** Path to configuration file.
4979 jmx4perl_server              | **Optional.** Symbolic name of server url to use, which needs to be configured in the configuration file.
4980 jmx4perl_check               | **Optional.** Name of a check configuration as defined in the configuration file, use array if you need arguments.
4981
4982
4983 #### kdc <a id="plugin-contrib-command-kdc"></a>
4984
4985 The [check_kdc](https://exchange.nagios.org/directory/Plugins/Security/check_kdc/details) plugin
4986 uses the Kerberos `kinit` binary to monitor Kerberos 5 KDC by acquiring a ticket.
4987
4988 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4989
4990 Name            | Description
4991 ----------------|--------------------------------------------------------------------------
4992 kdc_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, `address6` otherwise.
4993 kdc_port        | **Optional** Port on which KDC runs (default 88).
4994 kdc_principal   | **Required** Principal name to authenticate as (including realm).
4995 kdc_keytab      | **Required** Keytab file containing principal's key.
4996
4997
4998 #### nginx_status <a id="plugin-contrib-command-nginx_status"></a>
4999
5000 The [check_nginx_status.pl](https://github.com/regilero/check_nginx_status) plugin
5001 uses the [/nginx_status](https://nginx.org/en/docs/http/ngx_http_stub_status_module.html)
5002 HTTP endpoint which provides metrics for monitoring Nginx.
5003
5004 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5005
5006 Name                            | Description
5007 --------------------------------|----------------------------------------------------------------------------------
5008 nginx_status_host_address       | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, `address6` otherwise.
5009 nginx_status_port               | **Optional.** the http port.
5010 nginx_status_url                | **Optional.** URL to use, instead of the default (http://`nginx_status_hostname`/nginx_status).
5011 nginx_status_servername         | **Optional.** ServerName to use if you specified an IP to match the good Virtualhost in your target
5012 nginx_status_ssl                | **Optional.** set to use ssl connection
5013 nginx_status_disable_sslverify          | **Optional.** set to disable SSL hostname verification
5014 nginx_status_user               | **Optional.** Username for basic auth
5015 nginx_status_pass               | **Optional.** Password for basic auth
5016 nginx_status_realm              | **Optional.** Realm for basic auth
5017 nginx_status_maxreach           | **Optional.** Number of max processes reached (since last check) that should trigger an alert
5018 nginx_status_timeout            | **Optional.** timeout in seconds
5019 nginx_status_warn               | **Optional.** Warning threshold (number of active connections, ReqPerSec or ConnPerSec that will cause a WARNING) like '10000,100,200'.
5020 nginx_status_critical           | **Optional.** Critical threshold (number of active connections, ReqPerSec or ConnPerSec that will cause a CRITICAL) like '20000,200,300'.
5021
5022
5023 #### rbl <a id="plugin-contrib-command-rbl"></a>
5024
5025 The [check_rbl](https://github.com/matteocorti/check_rbl) plugin
5026 uses the `Net::DNS` Perl library to check whether your SMTP server
5027 is blacklisted.
5028
5029 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5030
5031 Name            | Description
5032 ----------------|--------------------------------------------------------------------------
5033 rbl_hostname    | **Optional.** The address or name of the SMTP server to check. Defaults to "$address$" if the host's `address` attribute is set, `address6` otherwise.
5034 rbl_server      | **Required** List of RBL servers as an array.
5035 rbl_warning     | **Optional** Number of blacklisting servers for a warning.
5036 rbl_critical    | **Optional** Number of blacklisting servers for a critical.
5037 tbl_timeout     | **Optional** Seconds before plugin times out (default: 15).
5038
5039
5040 #### squid <a id="plugin-contrib-command-squid"></a>
5041
5042 The [check_squid](https://exchange.icinga.com/exchange/check_squid) plugin
5043 uses the `squidclient` binary to monitor a [Squid proxy](http://www.squid-cache.org).
5044
5045 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5046
5047 Name                    | Description
5048 ------------------------|----------------------------------------------------------------------------------
5049 squid_hostname          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
5050 squid_data              | **Optional.** Data to fetch (default: Connections) available data: Connections Cache Resources Memory FileDescriptors.
5051 squid_port              | **Optional.** Port number (default: 3128).
5052 squid_user              | **Optional.** WWW user
5053 squid_password          | **Optional.** WWW password
5054 squid_warning           | **Optional.** Warning threshold. See http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT for the threshold format.
5055 squid_critical          | **Optional.** Critical threshold. See http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT for the threshold format.
5056 squid_client            | **Optional.** Path of squidclient (default: /usr/bin/squidclient).
5057 squid_timeout           | **Optional.** Seconds before plugin times out (default: 15).
5058
5059
5060 #### webinject <a id="plugin-contrib-command-webinject"></a>
5061
5062 The [check_webinject](https://labs.consol.de/de/nagios/check_webinject/index.html) plugin
5063 uses [WebInject](http://www.webinject.org/manual.html) to test web applications
5064 and web services in an automated fashion.
5065 It can be used to test individual system components that have HTTP interfaces
5066 (JSP, ASP, CGI, PHP, AJAX, Servlets, HTML Forms, XML/SOAP Web Services, REST, etc),
5067 and can be used as a test harness to create a suite of HTTP level automated functional,
5068 acceptance, and regression tests. A test harness allows you to run many test cases
5069 and collect/report your results. WebInject offers real-time results
5070 display and may also be used for monitoring system response times.
5071
5072 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5073
5074 Name                    | Description
5075 ------------------------|--------------
5076 webinject_config_file   | **Optional.** There is a configuration file named 'config.xml' that is used to store configuration settings for your project. You can use this to specify which test case files to run and to set some constants and settings to be used by WebInject.
5077 webinject_output        | **Optional.** This option is followed by a directory name or a prefix to prepended to the output files. This is used to specify the location for writing output files (http.log, results.html, and results.xml). If a directory name is supplied (use either an absolute or relative path and make sure to add the trailing slash), all output files are written to this directory. If the trailing slash is ommitted, it is assumed to a prefix and this will be prepended to the output files. You may also use a combination of a directory and prefix.
5078 webinject_no_output     | **Optional.** Suppresses all output to STDOUT except the results summary.
5079 webinject_timeout       | **Optional.** The value [given in seconds] will be compared to the global time elapsed to run all the tests. If the tests have all been successful, but have taken more time than the 'globaltimeout' value, a warning message is sent back to Icinga.
5080 webinject_report_type   | **Optional.** This setting is used to enable output formatting that is compatible for use with specific external programs. The available values you can set this to are: nagios, mrtg, external and standard.
5081 webinject_testcase_file | **Optional.** When you launch WebInject in console mode, you can optionally supply an argument for a testcase file to run. It will look for this file in the directory that webinject.pl resides in. If no filename is passed from the command line, it will look in config.xml for testcasefile declarations. If no files are specified, it will look for a default file named 'testcases.xml' in the current [webinject] directory. If none of these are found, the engine will stop and give you an error.