]> granicus.if.org Git - icinga2/blob - doc/10-icinga-template-library.md
Merge pull request #5602 from Icinga/fix/config-validation-fails-on-windows-with...
[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", "configfs", "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,
818 negate_unknown        |               permutes OK and CRITICAL.
819 negate_substitute     | **Optional.** Substitute output text as well. Will only substitute text in CAPITALS.
820 negate_command        | **Required.** Command to be negated.
821 negate_arguments      | **Optional.** Arguments for the negated command.
822
823 ### nrpe <a id="plugin-check-command-nrpe"></a>
824
825 The `check_nrpe` plugin can be used to query an [NRPE](https://docs.icinga.com/latest/en/nrpe.html)
826 server or [NSClient++](https://www.nsclient.org). **Note**: This plugin
827 is considered insecure/deprecated.
828
829 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
830
831 Name            | Description
832 ----------------|--------------
833 nrpe_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
834 nrpe_port       | **Optional.** The NRPE port. Defaults to 5666.
835 nrpe_command    | **Optional.** The command that should be executed.
836 nrpe_no_ssl     | **Optional.** Whether to disable SSL or not. Defaults to `false`.
837 nrpe_timeout_unknown | **Optional.** Whether to set timeouts to unknown instead of critical state. Defaults to `false`.
838 nrpe_timeout    | **Optional.** The timeout in seconds.
839 nrpe_arguments  | **Optional.** Arguments that should be passed to the command. Multiple arguments must be defined as array.
840 nrpe_ipv4       | **Optional.** Use IPv4 connection. Defaults to false.
841 nrpe_ipv6       | **Optional.** Use IPv6 connection. Defaults to false.
842 nrpe_version_2  | **Optional.** Use this if you want to connect using NRPE v2 protocol. Defaults to false.
843
844
845 ### nscp <a id="plugin-check-command-nscp"></a>
846
847 The [check_nt](https://www.monitoring-plugins.org/doc/man/check_nt.html) plugin
848 collects data from the [NSClient++](https://www.nsclient.org) service.
849
850 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
851
852 Name            | Description
853 ----------------|--------------
854 nscp_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
855 nscp_port       | **Optional.** The NSClient++ port. Defaults to 12489.
856 nscp_password   | **Optional.** The NSClient++ password.
857 nscp_variable   | **Required.** The variable that should be checked.
858 nscp_params     | **Optional.** Parameters for the query. Multiple parameters must be defined as array.
859 nscp_warn       | **Optional.** The warning threshold.
860 nscp_crit       | **Optional.** The critical threshold.
861 nscp_timeout    | **Optional.** The query timeout in seconds.
862 nscp_showall    | **Optional.** Use with SERVICESTATE to see working services or PROCSTATE for running processes. Defaults to false.
863
864
865 ### ntp_time <a id="plugin-check-command-ntp-time"></a>
866
867 The [check_ntp_time](https://www.monitoring-plugins.org/doc/man/check_ntp_time.html) plugin
868 checks the clock offset between the local host and a remote NTP server.
869
870 **Note**: If you want to monitor an NTP server, please use `ntp_peer`.
871
872 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
873
874 Name            | Description
875 ----------------|--------------
876 ntp_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
877 ntp_port        | **Optional.** Port number (default: 123).
878 ntp_quiet       | **Optional.** Returns UNKNOWN instead of CRITICAL if offset cannot be found.
879 ntp_warning     | **Optional.** Offset to result in warning status (seconds).
880 ntp_critical    | **Optional.** Offset to result in critical status (seconds).
881 ntp_timeoffset  | **Optional.** Expected offset of the ntp server relative to local server (seconds).
882 ntp_timeout     | **Optional.** Seconds before connection times out (default: 10).
883 ntp_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
884 ntp_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
885
886
887 ### ntp_peer <a id="plugin-check-command-ntp-peer"></a>
888
889 The [check_ntp_peer](https://www.monitoring-plugins.org/doc/man/check_ntp_peer.html) plugin
890 checks the health of an NTP server. It supports checking the offset with the sync peer, the
891 jitter and stratum. This plugin will not check the clock offset between the local host and NTP
892  server; please use `ntp_time` for that purpose.
893
894 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
895
896 Name            | Description
897 ----------------|--------------
898 ntp_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
899 ntp_port        | **Optional.** The port to use. Default to 123.
900 ntp_warning     | **Optional.** Offset to result in warning status (seconds).
901 ntp_critical    | **Optional.** Offset to result in critical status (seconds).
902 ntp_wstratum    | **Optional.** Warning threshold for stratum of server's synchronization peer.
903 ntp_cstratum    | **Optional.** Critical threshold for stratum of server's synchronization peer.
904 ntp_wjitter     | **Optional.** Warning threshold for jitter.
905 ntp_cjitter     | **Optional.** Critical threshold for jitter.
906 ntp_wsource     | **Optional.** Warning threshold for number of usable time sources.
907 ntp_csource     | **Optional.** Critical threshold for number of usable time sources.
908 ntp_timeout     | **Optional.** Seconds before connection times out (default: 10).
909 ntp_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
910 ntp_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
911
912
913 ### passive <a id="plugin-check-command-passive"></a>
914
915 Specialised check command object for passive checks executing the `check_dummy` plugin with appropriate default values.
916
917 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
918
919 Name            | Description
920 ----------------|--------------
921 dummy_state     | **Optional.** The state. Can be one of 0 (ok), 1 (warning), 2 (critical) and 3 (unknown). Defaults to 3.
922 dummy_text      | **Optional.** Plugin output. Defaults to "No Passive Check Result Received.".
923
924 ### pgsql <a id="plugin-check-command-pgsql"></a>
925
926 The [check_pgsql](https://www.monitoring-plugins.org/doc/man/check_pgsql.html) plugin
927 tests a PostgreSQL DBMS to determine whether it is active and accepting queries.
928 If a query is specified using the `pgsql_query` attribute, it will be executed after
929 connecting to the server. The result from the query has to be numeric in order
930 to compare it against the query thresholds if set.
931
932 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
933
934 Name                    | Description
935 ------------------------|---------------------------------------------------------------
936 pgsql_hostname          | **Optional.** Host name, IP Address, or unix socket (must be an absolute path).
937 pgsql_port              | **Optional.** Port number (default: 5432).
938 pgsql_database          | **Optional.** Database to check (default: template1).
939 pgsql_username          | **Optional.** Login name of user.
940 pgsql_password          | **Optional.** Password (BIG SECURITY ISSUE).
941 pgsql_options           | **Optional.** Connection parameters (keyword = value), see below.
942 pgsql_warning           | **Optional.** Response time to result in warning status (seconds).
943 pgsql_critical          | **Optional.** Response time to result in critical status (seconds).
944 pgsql_timeout           | **Optional.** Seconds before connection times out (default: 10).
945 pgsql_query             | **Optional.** SQL query to run. Only first column in first row will be read.
946 pgsql_query_warning     | **Optional.** SQL query value to result in warning status (double).
947 pgsql_query_critical    | **Optional.** SQL query value to result in critical status (double).
948
949 ### ping <a id="plugin-check-command-ping"></a>
950
951 The [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html) plugin
952 uses the ping command to probe the specified host for packet loss (percentage) and
953 round trip average (milliseconds).
954
955 This command uses the host's `address` attribute if available and falls back to using
956 the `address6` attribute if the `address` attribute is not set.
957
958 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
959
960 Name            | Description
961 ----------------|--------------
962 ping_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
963 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
964 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 5.
965 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
966 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 15.
967 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
968 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
969
970
971 ### ping4 <a id="plugin-check-command-ping4"></a>
972
973 The [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html) plugin
974 uses the ping command to probe the specified host for packet loss (percentage) and
975 round trip average (milliseconds).
976
977 This command uses the host's `address` attribute if not explicitely specified using
978 the `ping_address` attribute.
979
980 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
981
982 Name            | Description
983 ----------------|--------------
984 ping_address    | **Optional.** The host's IPv4 address. Defaults to "$address$".
985 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
986 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 5.
987 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
988 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 15.
989 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
990 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
991
992 ### ping6 <a id="plugin-check-command-ping6"></a>
993
994 The [check_ping](https://www.monitoring-plugins.org/doc/man/check_ping.html) plugin
995 uses the ping command to probe the specified host for packet loss (percentage) and
996 round trip average (milliseconds).
997
998 This command uses the host's `address6` attribute if not explicitely specified using
999 the `ping_address` attribute.
1000
1001 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1002
1003 Name            | Description
1004 ----------------|--------------
1005 ping_address    | **Optional.** The host's IPv6 address. Defaults to "$address6$".
1006 ping_wrta       | **Optional.** The RTA warning threshold in milliseconds. Defaults to 100.
1007 ping_wpl        | **Optional.** The packet loss warning threshold in %. Defaults to 5.
1008 ping_crta       | **Optional.** The RTA critical threshold in milliseconds. Defaults to 200.
1009 ping_cpl        | **Optional.** The packet loss critical threshold in %. Defaults to 15.
1010 ping_packets    | **Optional.** The number of packets to send. Defaults to 5.
1011 ping_timeout    | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
1012
1013
1014 ### pop <a id="plugin-check-command-pop"></a>
1015
1016 The [check_pop](https://www.monitoring-plugins.org/doc/man/check_pop.html) plugin
1017 tests POP connections with the specified host (or unix socket).
1018
1019 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1020
1021 Name                 | Description
1022 ---------------------|--------------
1023 pop_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1024 pop_port             | **Optional.** The port that should be checked. Defaults to 110.
1025 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.
1026 pop_send             | **Optional.** String to send to the server.
1027 pop_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1028 pop_all              | **Optional.** All expect strings need to occur in server response. Default is any.
1029 pop_quit             | **Optional.** String to send server to initiate a clean close of the connection.
1030 pop_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
1031 pop_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
1032 pop_jail             | **Optional.** Hide output from TCP socket.
1033 pop_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
1034 pop_delay            | **Optional.** Seconds to wait between sending string and polling for response.
1035 pop_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1036 pop_ssl              | **Optional.** Use SSL for the connection.
1037 pop_warning          | **Optional.** Response time to result in warning status (seconds).
1038 pop_critical         | **Optional.** Response time to result in critical status (seconds).
1039 pop_timeout          | **Optional.** Seconds before connection times out (default: 10).
1040 pop_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1041 pop_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1042
1043
1044 ### procs <a id="plugin-check-command-processes"></a>
1045
1046 The [check_procs](https://www.monitoring-plugins.org/doc/man/check_procs.html) plugin
1047 checks all processes and generates WARNING or CRITICAL states if the specified
1048 metric is outside the required threshold ranges. The metric defaults to number
1049 of processes. Search filters can be applied to limit the processes to check.
1050
1051 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1052
1053 Name                 | Description
1054 ---------------------|--------------
1055 procs_warning        | **Optional.** The process count warning threshold. Defaults to 250.
1056 procs_critical       | **Optional.** The process count critical threshold. Defaults to 400.
1057 procs_metric         | **Optional.** Check thresholds against metric.
1058 procs_timeout        | **Optional.** Seconds before plugin times out.
1059 procs_traditional    | **Optional.** Filter own process the traditional way by PID instead of /proc/pid/exe. Defaults to false.
1060 procs_state          | **Optional.** Only scan for processes that have one or more of the status flags you specify.
1061 procs_ppid           | **Optional.** Only scan for children of the parent process ID indicated.
1062 procs_vsz            | **Optional.** Only scan for processes with VSZ higher than indicated.
1063 procs_rss            | **Optional.** Only scan for processes with RSS higher than indicated.
1064 procs_pcpu           | **Optional.** Only scan for processes with PCPU higher than indicated.
1065 procs_user           | **Optional.** Only scan for processes with user name or ID indicated.
1066 procs_argument       | **Optional.** Only scan for processes with args that contain STRING.
1067 procs_argument_regex | **Optional.** Only scan for processes with args that contain the regex STRING.
1068 procs_command        | **Optional.** Only scan for exact matches of COMMAND (without path).
1069 procs_nokthreads     | **Optional.** Only scan for non kernel threads. Defaults to false.
1070
1071
1072 ### radius <a id="plugin-check-command-radius"></a>
1073
1074 The [check_radius](https://www.monitoring-plugins.org/doc/man/check_radius.html) plugin
1075 checks a RADIUS server to see if it is accepting connections.  The server to test
1076 must be specified in the invocation, as well as a user name and password. A configuration
1077 file may also be present. The format of the configuration file is described in the
1078 radiusclient library sources.  The password option presents a substantial security
1079 issue because the password can possibly be determined by careful watching of the
1080 command line in a process listing. This risk is exacerbated because the plugin will
1081 typically be executed at regular predictable intervals. Please be sure that the
1082 password used does not allow access to sensitive system resources.
1083
1084
1085 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1086
1087 Name               | Description
1088 -------------------|--------------
1089 radius_address     | **Optional.** The radius server's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1090 radius_config_file | **Required.** The radius configuration file.
1091 radius_username    | **Required.** The radius username to test.
1092 radius_password    | **Required.** The radius password to test.
1093 radius_port        | **Optional.** The radius port number (default 1645).
1094 radius_nas_id      | **Optional.** The NAS identifier.
1095 radius_nas_address | **Optional.** The NAS IP address.
1096 radius_expect      | **Optional.** The response string to expect from the server.
1097 radius_retries     | **Optional.** The number of times to retry a failed connection.
1098 radius_timeout     | **Optional.** The number of seconds before connection times out (default: 10).
1099
1100
1101 ### simap <a id="plugin-check-command-simap"></a>
1102
1103 The [check_simap](https://www.monitoring-plugins.org/doc/man/check_simap.html) plugin
1104 tests SIMAP connections with the specified host (or unix socket).
1105
1106 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1107
1108 Name                   | Description
1109 -----------------------|--------------
1110 simap_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1111 simap_port             | **Optional.** The port that should be checked. Defaults to 993.
1112 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.
1113 simap_send             | **Optional.** String to send to the server.
1114 simap_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1115 simap_all              | **Optional.** All expect strings need to occur in server response. Default is any.
1116 simap_quit             | **Optional.** String to send server to initiate a clean close of the connection.
1117 simap_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
1118 simap_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
1119 simap_jail             | **Optional.** Hide output from TCP socket.
1120 simap_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
1121 simap_delay            | **Optional.** Seconds to wait between sending string and polling for response.
1122 simap_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1123 simap_ssl              | **Optional.** Use SSL for the connection.
1124 simap_warning          | **Optional.** Response time to result in warning status (seconds).
1125 simap_critical         | **Optional.** Response time to result in critical status (seconds).
1126 simap_timeout          | **Optional.** Seconds before connection times out (default: 10).
1127 simap_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1128 simap_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1129
1130 ### smart <a id="plugin-check-command-smart"></a>
1131
1132 The [check_ide_smart](https://www.monitoring-plugins.org/doc/man/check_ide_smart.html) plugin
1133 checks a local hard drive with the (Linux specific) SMART interface. Requires installation of `smartctl`.
1134
1135 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1136
1137 Name            | Description
1138 ----------------|--------------
1139 smart_device    | **Required.** The name of a local hard drive to monitor.
1140
1141
1142 ### smtp <a id="plugin-check-command-smtp"></a>
1143
1144 The [check_smtp](https://www.monitoring-plugins.org/doc/man/check_smtp.html) plugin
1145 will attempt to open an SMTP connection with the host.
1146
1147 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1148
1149 Name                  | Description
1150 ----------------------|--------------
1151 smtp_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1152 smtp_port             | **Optional.** The port that should be checked. Defaults to 25.
1153 smtp_mail_from        | **Optional.** Test a MAIL FROM command with the given email address.
1154 smtp_expect           | **Optional.** String to expect in first line of server response (default: '220').
1155 smtp_command          | **Optional.** SMTP command (may be used repeatedly).
1156 smtp_response         | **Optional.** Expected response to command (may be used repeatedly).
1157 smtp_helo_fqdn        | **Optional.** FQDN used for HELO
1158 smtp_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1159 smtp_starttls         | **Optional.** Use STARTTLS for the connection.
1160 smtp_authtype         | **Optional.** SMTP AUTH type to check (default none, only LOGIN supported).
1161 smtp_authuser         | **Optional.** SMTP AUTH username.
1162 smtp_authpass         | **Optional.** SMTP AUTH password.
1163 smtp_ignore_quit      | **Optional.** Ignore failure when sending QUIT command to server.
1164 smtp_warning          | **Optional.** Response time to result in warning status (seconds).
1165 smtp_critical         | **Optional.** Response time to result in critical status (seconds).
1166 smtp_timeout          | **Optional.** Seconds before connection times out (default: 10).
1167 smtp_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1168 smtp_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1169
1170
1171 ### snmp <a id="plugin-check-command-snmp"></a>
1172
1173 The [check_snmp](https://www.monitoring-plugins.org/doc/man/check_snmp.html) plugin
1174 checks the status of remote machines and obtains system information via SNMP.
1175
1176 **Note**: This plugin uses the `snmpget` command included with the NET-SNMP package.
1177
1178 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1179
1180 Name                | Description
1181 --------------------|--------------
1182 snmp_address        | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1183 snmp_oid            | **Required.** The SNMP OID.
1184 snmp_community      | **Optional.** The SNMP community. Defaults to "public".
1185 snmp_port           | **Optional.** The SNMP port. Defaults to "161".
1186 snmp_retries        | **Optional.** Number of retries to be used in the SNMP requests.
1187 snmp_warn           | **Optional.** The warning threshold.
1188 snmp_crit           | **Optional.** The critical threshold.
1189 snmp_string         | **Optional.** Return OK state if the string matches exactly with the output value
1190 snmp_ereg           | **Optional.** Return OK state if extended regular expression REGEX matches with the output value
1191 snmp_eregi          | **Optional.** Return OK state if case-insensitive extended REGEX matches with the output value
1192 snmp_label          | **Optional.** Prefix label for output value
1193 snmp_invert_search  | **Optional.** Invert search result and return CRITICAL state if found
1194 snmp_units          | **Optional.** Units label(s) for output value (e.g., 'sec.').
1195 snmp_version        | **Optional.** Version to use. E.g. 1, 2, 2c or 3.
1196 snmp_miblist        | **Optional.** MIB's to use, comma separated. Defaults to "ALL".
1197 snmp_rate_multiplier | **Optional.** Converts rate per second. For example, set to 60 to convert to per minute.
1198 snmp_rate           | **Optional.** Boolean. Enable rate calculation.
1199 snmp_getnext        | **Optional.** Boolean. Use SNMP GETNEXT. Defaults to false.
1200 snmp_timeout        | **Optional.** The command timeout in seconds. Defaults to 10 seconds.
1201 snmp_offset         | **Optional.** Add/substract the specified OFFSET to numeric sensor data.
1202 snmp_output_delimiter | **Optional.** Separates output on multiple OID requests.
1203 snmp_perf_oids      | **Optional.** Label performance data with OIDs instead of --label's.
1204
1205 ### snmpv3 <a id="plugin-check-command-snmpv3"></a>
1206
1207 Check command object for the [check_snmp](https://www.monitoring-plugins.org/doc/man/check_snmp.html)
1208 plugin, using SNMPv3 authentication and encryption options.
1209
1210 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1211
1212 Name                 | Description
1213 ---------------------|--------------
1214 snmpv3_address       | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1215 snmpv3_getnext       | **Optional.** Use SNMP GETNEXT instead of SNMP GET.
1216 snmpv3_seclevel      | **Optional.** The security level. Defaults to authPriv.
1217 snmpv3_auth_alg      | **Optional.** The authentication algorithm. Defaults to SHA.
1218 snmpv3_user          | **Required.** The username to log in with.
1219 snmpv3_auth_key      | **Required,** The authentication key. Required if `snmpv3_seclevel` is set to `authPriv` otherwise optional.
1220 snmpv3_priv_key      | **Required.** The encryption key.
1221 snmpv3_oid           | **Required.** The SNMP OID.
1222 snmpv3_priv_alg      | **Optional.** The encryption algorithm. Defaults to AES.
1223 snmpv3_warn          | **Optional.** The warning threshold.
1224 snmpv3_crit          | **Optional.** The critical threshold.
1225 snmpv3_string        | **Optional.** Return OK state (for that OID) if STRING is an exact match.
1226 snmpv3_ereg          | **Optional.** Return OK state (for that OID) if extended regular expression REGEX matches.
1227 snmpv3_eregi         | **Optional.** Return OK state (for that OID) if case-insensitive extended REGEX matches.
1228 snmpv3_invert_search | **Optional.** Invert search result and return CRITICAL if found
1229 snmpv3_label         | **Optional.** Prefix label for output value.
1230 snmpv3_units         | **Optional.** Units label(s) for output value (e.g., 'sec.').
1231 snmpv3_rate_multiplier | **Optional.** Converts rate per second. For example, set to 60 to convert to per minute.
1232 snmpv3_rate          | **Optional.** Boolean. Enable rate calculation.
1233 snmpv3_timeout       | **Optional.** The command timeout in seconds. Defaults to 10 seconds.
1234
1235 ### snmp-uptime <a id="plugin-check-command-snmp-uptime"></a>
1236
1237 Check command object for the [check_snmp](https://www.monitoring-plugins.org/doc/man/check_snmp.html)
1238 plugin, using the uptime OID by default.
1239
1240 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1241
1242 Name            | Description
1243 ----------------|--------------
1244 snmp_address    | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1245 snmp_oid        | **Optional.** The SNMP OID. Defaults to "1.3.6.1.2.1.1.3.0".
1246 snmp_community  | **Optional.** The SNMP community. Defaults to "public".
1247
1248
1249 ### spop <a id="plugin-check-command-spop"></a>
1250
1251 The [check_spop](https://www.monitoring-plugins.org/doc/man/check_spop.html) plugin
1252 tests SPOP connections with the specified host (or unix socket).
1253
1254 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1255
1256 Name                  | Description
1257 ----------------------|--------------
1258 spop_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1259 spop_port             | **Optional.** The port that should be checked. Defaults to 995.
1260 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.
1261 spop_send             | **Optional.** String to send to the server.
1262 spop_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1263 spop_all              | **Optional.** All expect strings need to occur in server response. Default is any.
1264 spop_quit             | **Optional.** String to send server to initiate a clean close of the connection.
1265 spop_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
1266 spop_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
1267 spop_jail             | **Optional.** Hide output from TCP socket.
1268 spop_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
1269 spop_delay            | **Optional.** Seconds to wait between sending string and polling for response.
1270 spop_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1271 spop_ssl              | **Optional.** Use SSL for the connection.
1272 spop_warning          | **Optional.** Response time to result in warning status (seconds).
1273 spop_critical         | **Optional.** Response time to result in critical status (seconds).
1274 spop_timeout          | **Optional.** Seconds before connection times out (default: 10).
1275 spop_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1276 spop_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1277
1278
1279 ### ssh <a id="plugin-check-command-ssh"></a>
1280
1281 The [check_ssh](https://www.monitoring-plugins.org/doc/man/check_ssh.html) plugin
1282 connects to an SSH server at a specified host and port.
1283
1284 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1285
1286 Name            | Description
1287 ----------------|--------------
1288 ssh_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1289 ssh_port        | **Optional.** The port that should be checked. Defaults to 22.
1290 ssh_timeout     | **Optional.** Seconds before connection times out. Defaults to 10.
1291 ssh_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
1292 ssh_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
1293
1294
1295 ### ssl <a id="plugin-check-command-ssl"></a>
1296
1297 Check command object for the [check_tcp](https://www.monitoring-plugins.org/doc/man/check_tcp.html) plugin,
1298 using ssl-related options.
1299
1300 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1301
1302 Name                          | Description
1303 ------------------------------|--------------
1304 ssl_address                   | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1305 ssl_port                      | **Optional.** The port that should be checked. Defaults to 443.
1306 ssl_timeout                   | **Optional.** Timeout in seconds for the connect and handshake. The plugin default is 10 seconds.
1307 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.
1308 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.
1309 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$".
1310
1311
1312 ### ssmtp <a id="plugin-check-command-ssmtp"></a>
1313
1314 The [check_ssmtp](https://www.monitoring-plugins.org/doc/man/check_ssmtp.html) plugin
1315 tests SSMTP connections with the specified host (or unix socket).
1316
1317 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1318
1319 Name                   | Description
1320 -----------------------|--------------
1321 ssmtp_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1322 ssmtp_port             | **Optional.** The port that should be checked. Defaults to 465.
1323 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.
1324 ssmtp_send             | **Optional.** String to send to the server.
1325 ssmtp_expect           | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1326 ssmtp_all              | **Optional.** All expect strings need to occur in server response. Default is any.
1327 ssmtp_quit             | **Optional.** String to send server to initiate a clean close of the connection.
1328 ssmtp_refuse           | **Optional.** Accept TCP refusals with states ok, warn, crit (default: crit).
1329 ssmtp_mismatch         | **Optional.** Accept expected string mismatches with states ok, warn, crit (default: warn).
1330 ssmtp_jail             | **Optional.** Hide output from TCP socket.
1331 ssmtp_maxbytes         | **Optional.** Close connection once more than this number of bytes are received.
1332 ssmtp_delay            | **Optional.** Seconds to wait between sending string and polling for response.
1333 ssmtp_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
1334 ssmtp_ssl              | **Optional.** Use SSL for the connection.
1335 ssmtp_warning          | **Optional.** Response time to result in warning status (seconds).
1336 ssmtp_critical         | **Optional.** Response time to result in critical status (seconds).
1337 ssmtp_timeout          | **Optional.** Seconds before connection times out (default: 10).
1338 ssmtp_ipv4             | **Optional.** Use IPv4 connection. Defaults to false.
1339 ssmtp_ipv6             | **Optional.** Use IPv6 connection. Defaults to false.
1340
1341
1342 ### swap <a id="plugin-check-command-swap"></a>
1343
1344 The [check_swap](https://www.monitoring-plugins.org/doc/man/check_swap.html) plugin
1345 checks the swap space on a local machine.
1346
1347 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1348
1349 Name            | Description
1350 ----------------|--------------
1351 swap_wfree      | **Optional.** The free swap space warning threshold in % (enable `swap_integer` for number values). Defaults to `50%`.
1352 swap_cfree      | **Optional.** The free swap space critical threshold in % (enable `swap_integer` for number values). Defaults to `25%`.
1353 swap_integer    | **Optional.** Specifies whether the thresholds are passed as number or percent value. Defaults to false (percent values).
1354 swap_allswaps   | **Optional.** Conduct comparisons for all swap partitions, one by one. Defaults to false.
1355 swap_noswap     | **Optional.** Resulting state when there is no swap regardless of thresholds. Possible values are "ok", "warning", "critical", "unknown". Defaults to "critical".
1356
1357
1358 ### tcp <a id="plugin-check-command-tcp"></a>
1359
1360 The [check_tcp](https://www.monitoring-plugins.org/doc/man/check_tcp.html) plugin
1361 tests TCP connections with the specified host (or unix socket).
1362
1363 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1364
1365 Name            | Description
1366 ----------------|--------------
1367 tcp_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1368 tcp_port        | **Required.** The port that should be checked.
1369 tcp_expect      | **Optional.** String to expect in server response. Multiple strings must be defined as array.
1370 tcp_all         | **Optional.** All expect strings need to occur in server response. Defaults to false.
1371 tcp_escape_send | **Optional.** Enable usage of \\n, \\r, \\t or \\\\ in send string.
1372 tcp_send        | **Optional.** String to send to the server.
1373 tcp_escape_quit | **Optional.** Enable usage of \\n, \\r, \\t or \\\\ in quit string.
1374 tcp_quit        | **Optional.** String to send server to initiate a clean close of the connection.
1375 tcp_refuse      | **Optional.** Accept TCP refusals with states ok, warn, crit. Defaults to crit.
1376 tcp_mismatch    | **Optional.** Accept expected string mismatches with states ok, warn, crit. Defaults to warn.
1377 tcp_jail        | **Optional.** Hide output from TCP socket.
1378 tcp_maxbytes    | **Optional.** Close connection once more than this number of bytes are received.
1379 tcp_delay       | **Optional.** Seconds to wait between sending string and polling for response.
1380 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.
1381 tcp_ssl         | **Optional.** Use SSL for the connection. Defaults to false.
1382 tcp_wtime       | **Optional.** Response time to result in warning status (seconds).
1383 tcp_ctime       | **Optional.** Response time to result in critical status (seconds).
1384 tcp_timeout     | **Optional.** Seconds before connection times out. Defaults to 10.
1385 tcp_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
1386 tcp_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
1387
1388
1389 ### udp <a id="plugin-check-command-udp"></a>
1390
1391 The [check_udp](https://www.monitoring-plugins.org/doc/man/check_udp.html) plugin
1392 tests UDP connections with the specified host (or unix socket).
1393
1394 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1395
1396 Name            | Description
1397 ----------------|--------------
1398 udp_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1399 udp_port        | **Required.** The port that should be checked.
1400 udp_send        | **Required.** The payload to send in the UDP datagram.
1401 udp_expect      | **Required.** The payload to expect in the response datagram.
1402 udp_quit        | **Optional.** The payload to send to 'close' the session.
1403 udp_ipv4        | **Optional.** Use IPv4 connection. Defaults to false.
1404 udp_ipv6        | **Optional.** Use IPv6 connection. Defaults to false.
1405
1406
1407 ### ups <a id="plugin-check-command-ups"></a>
1408
1409 The [check_ups](https://www.monitoring-plugins.org/doc/man/check_ups.html) plugin
1410 tests the UPS service on the specified host. [Network UPS Tools](http://www.networkupstools.org)
1411  must be running for this plugin to work.
1412
1413 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1414
1415 Name            | Description
1416 ----------------|--------------
1417 ups_address     | **Required.** The address of the host running upsd. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1418 ups_name        | **Required.** The UPS name. Defaults to `ups`.
1419 ups_port        | **Optional.** The port to which to connect. Defaults to 3493.
1420 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`.
1421 ups_warning     | **Optional.** The warning threshold for the selected variable.
1422 ups_critical    | **Optional.** The critical threshold for the selected variable.
1423 ups_celsius     | **Optional.** Display the temperature in degrees Celsius instead of Fahrenheit. Defaults to `false`.
1424 ups_timeout     | **Optional.** The number of seconds before the connection times out. Defaults to 10.
1425
1426
1427 ### users <a id="plugin-check-command-users"></a>
1428
1429 The [check_users](https://www.monitoring-plugins.org/doc/man/check_users.html) plugin
1430 checks the number of users currently logged in on the local system and generates an
1431 error if the number exceeds the thresholds specified.
1432
1433 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1434
1435 Name            | Description
1436 ----------------|--------------
1437 users_wgreater  | **Optional.** The user count warning threshold. Defaults to 20.
1438 users_cgreater  | **Optional.** The user count critical threshold. Defaults to 50.
1439
1440
1441
1442 ## Windows Plugins for Icinga 2 <a id="windows-plugins"></a>
1443
1444 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.
1445
1446 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:
1447
1448         include <windows-plugins>
1449
1450 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.
1451
1452
1453 ### Threshold syntax <a id="windows-plugins-thresholds"></a>
1454
1455 So not specified differently the thresholds for the plugins all follow the same pattern
1456
1457 Threshold    | Meaning
1458 :------------|:----------
1459 "29"         | The threshold is 29.
1460 "!29"        | The threshold is 29, but the negative of the result is returned.
1461 "[10-40]"    | The threshold is a range from (including) 20 to 40, a value inside means the threshold has been exceeded.
1462 "![10-40]"   | Same as above, but the result is inverted.
1463
1464
1465 ### disk-windows <a id="windows-plugins-disk-windows"></a>
1466
1467 Check command object for the `check_disk.exe` plugin.
1468 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.).
1469 The data collection is instant and free disk space (default, see `disk_win_show_used`) is used for threshold computation.
1470
1471 > **Note**
1472 >
1473 > Percentage based thresholds can be used by adding a '%' to the threshold
1474 > value.
1475
1476 Custom attributes:
1477
1478 Name                  | Description
1479 :---------------------|:------------
1480 disk\_win\_warn       | **Optional**. The warning threshold.
1481 disk\_win\_crit       | **Optional**. The critical threshold.
1482 disk\_win\_path       | **Optional**. Check only these paths, default checks all.
1483 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.
1484 disk\_win\_exclude    | **Optional**. Exclude these drives from check.
1485 disk\_win\_show\_used | **Optional**. Use used instead of free space.
1486
1487 ### load-windows <a id="windows-plugins-load-windows"></a>
1488
1489 Check command object for the `check_load.exe` plugin.
1490 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).
1491
1492 Custom attributes:
1493
1494 Name            | Description
1495 :---------------|:------------
1496 load\_win\_warn | **Optional**. The warning threshold.
1497 load\_win\_crit | **Optional**. The critical threshold.
1498
1499
1500 ### memory-windows <a id="windows-plugins-memory-windows"></a>
1501
1502 Check command object for the `check_memory.exe` plugin.
1503 The memory collection is instant and free memory is used for threshold computation.
1504
1505 > **Note**
1506 >
1507 > Percentage based thresholds can be used by adding a '%' to the threshold
1508 > value. Keep in mind that memory\_win\_unit is applied before the
1509 > value is calculated.
1510
1511 Custom attributes:
1512
1513 Name              | Description
1514 :-----------------|:------------
1515 memory\_win\_warn | **Optional**. The warning threshold.
1516 memory\_win\_crit | **Optional**. The critical threshold.
1517 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.
1518
1519
1520 ### network-windows <a id="windows-plugins-network-windows"></a>
1521
1522 Check command object for the `check_network.exe` plugin.
1523 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).
1524
1525 Custom attributes:
1526
1527 Name                | Description
1528 :-------------------|:------------
1529 network\_win\_warn  | **Optional**. The warning threshold.
1530 network\_win\_crit  | **Optional**. The critical threshold.
1531 network\_no\_isatap | **Optional**. Do not print ISATAP interfaces.
1532
1533
1534 ### perfmon-windows <a id="windows-plugins-perfmon-windows"></a>
1535
1536 Check command object for the `check_perfmon.exe` plugin.
1537 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`.
1538
1539 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"`
1540
1541 Custom attributes:
1542
1543 Name                  | Description
1544 :---------------------|:------------
1545 perfmon\_win\_warn    | **Optional**. The warning threshold.
1546 perfmon\_win\_crit    | **Optional**. The critical threshold.
1547 perfmon\_win\_counter | **Required**. The Performance Counter to use. Ex. `\Processor(_Total)\% Idle Time`.
1548 perfmon\_win\_wait    | **Optional**. Time in milliseconds to wait between data collection (default: 1000).
1549 perfmon\_win\_type    | **Optional**. Format in which to expect perfomance values. Possible are: long, int64 and double (default).
1550 perfmon\_win\_syntax  | **Optional**. Use this in the performance output instead of `perfmon\_win\_counter`. Exists for graphice compatibility reasons.
1551
1552
1553 ### ping-windows <a id="windows-plugins-ping-windows"></a>
1554
1555 Check command object for the `check_ping.exe` plugin.
1556 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.
1557
1558 Custom attributes:
1559
1560 Name               | Description
1561 :------------------|:------------
1562 ping\_win\_warn    | **Optional**. The warning threshold. RTA and package loss separated by comma.
1563 ping\_win\_crit    | **Optional**. The critical threshold. RTA and package loss separated by comma.
1564 ping\_win\_address | **Required**. An IPv4 or IPv6 address
1565 ping\_win\_packets | **Optional**. Number of packages to send. Default: 5.
1566 ping\_win\_timeout | **Optional**. The timeout in milliseconds. Default: 1000
1567
1568
1569 ### procs-windows <a id="windows-plugins-procs-windows"></a>
1570
1571 Check command object for `check_procs.exe` plugin.
1572 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.
1573
1574 Custom attributes:
1575
1576 Name             | Description
1577 :----------------|:------------
1578 procs\_win\_warn | **Optional**. The warning threshold.
1579 procs\_win\_crit | **Optional**. The critical threshold.
1580 procs\_win\_user | **Optional**. Count this useres processes.
1581
1582
1583 ### service-windows <a id="windows-plugins-service-windows"></a>
1584
1585 Check command object for `check_service.exe` plugin.
1586 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.
1587
1588 Custom attributes:
1589
1590 Name                      | Description
1591 :-------------------------|:------------
1592 service\_win\_warn        | **Optional**. Warn when service is not running.
1593 service\_win\_description | **Optional**. If this is set, `service\_win\_service` looks at the service description.
1594 service\_win\_service     | **Required**. Name of the service to check.
1595
1596
1597 ### swap-windows <a id="windows-plugins-swap-windows"></a>
1598
1599 Check command object for `check_swap.exe` plugin.
1600 The data collection is instant.
1601
1602 Custom attributes:
1603
1604 Name            | Description
1605 :---------------|:------------
1606 swap\_win\_warn | **Optional**. The warning threshold.
1607 swap\_win\_crit | **Optional**. The critical threshold.
1608 swap\_win\_unit | **Optional**. The unit to display the received value in, thresholds are interpreted in this unit. Defaults to "mb" (megabyte).
1609
1610
1611 ### update-windows <a id="windows-plugins-update-windows"></a>
1612
1613 Check command object for `check_update.exe` plugin.
1614 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.
1615
1616 > **Note**
1617 >
1618 > The Network Services Account which runs Icinga 2 by default does not have the required
1619 > permissions to run this check.
1620
1621 Custom attributes:
1622
1623 Name                | Description
1624 :-------------------|:------------
1625 update\_win\_warn   | **Optional**. If set, returns warning when important updates are available.
1626 update\_win\_crit   | **Optional**. If set, return critical when important updates that require a reboot are available.
1627 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.
1628
1629
1630 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.  
1631 It can be enabled/disabled for example by setting them to "true" or "false", "1" or "0" would also work.  
1632 Thresholds will always be "1".
1633
1634 > **Note**
1635 >
1636 > If they are enabled, performance data will be shown in the webinterface.  
1637 > If run without the optional parameters, the plugin will output critical if any important updates are available.  
1638
1639
1640 ### uptime-windows <a id="windows-plugins-uptime-windows"></a>
1641
1642 Check command opject for `check_uptime.exe` plugin.
1643 Uses GetTickCount64 to get the uptime, so boot time is not included.
1644
1645 Custom attributes:
1646
1647 Name              | Description
1648 :-----------------|:------------
1649 uptime\_win\_warn | **Optional**. The warning threshold.
1650 uptime\_win\_crit | **Optional**. The critical threshold.
1651 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).
1652
1653
1654 ### users-windows <a id="windows-plugins-users-windows"></a>
1655
1656 Check command object for `check_users.exe` plugin.
1657
1658 Custom attributes:
1659
1660 Name             | Description
1661 :----------------|:------------
1662 users\_win\_warn | **Optional**. The warning threshold.
1663 users\_win\_crit | **Optional**. The critical threshold.
1664
1665
1666 ## Plugin Check Commands for NSClient++ <a id="nscp-plugin-check-commands"></a>
1667
1668 There are two methods available for querying NSClient++:
1669
1670 * Query the [HTTP API](10-icinga-template-library.md#nscp-check-api) locally or remotely (requires a running NSClient++ service)
1671 * Run a [local CLI check](10-icinga-template-library.md#nscp-check-local) (does not require NSClient++ as a service)
1672
1673 Both methods have their advantages and disadvantages. One thing to
1674 note: If you rely on performance counter delta calculations such as
1675 CPU utilization, please use the HTTP API instead of the CLI sample call.
1676
1677 ### nscp_api <a id="nscp-check-api"></a>
1678
1679 `check_nscp_api` is part of the Icinga 2 plugins. This plugin is available for
1680 both, Windows and Linux/Unix.
1681
1682 Verify that the ITL CheckCommand is included in the [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf) configuration file:
1683
1684     vim /etc/icinga2/icinga2.conf
1685
1686     include <plugins>
1687
1688 `check_nscp_api` runs queries against the NSClient++ API. Therefore NSClient++ needs to have
1689 the `webserver` module enabled, configured and loaded.
1690
1691 You can install the webserver using the following CLI commands:
1692
1693     ./nscp.exe web install
1694     ./nscp.exe web password — –set icinga
1695
1696 Now you can define specific [queries](https://docs.nsclient.org/reference/check/CheckHelpers.html#queries)
1697 and integrate them into Icinga 2.
1698
1699 The check plugin `check_nscp_api` can be integrated with the `nscp_api` CheckCommand object:
1700
1701 Custom attributes:
1702
1703 Name                   | Description
1704 :----------------------|:----------------------
1705 nscp\_api\_host       | **Required**. NSCP API host address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1706 nscp\_api\_port       | **Optional**. NSCP API port. Defaults to `8443`.
1707 nscp\_api\_password   | **Required**. NSCP API password. Please check the NSCP documentation for setup details.
1708 nscp\_api\_query      | **Required**. NSCP API query endpoint. Refer to the NSCP documentation for possible values.
1709 nscp\_api\_arguments  | **Optional**. NSCP API arguments dictionary either as single strings or key-value pairs using `=`. Refer to the NSCP documentation.
1710
1711 `nscp_api_arguments` can be used to pass required thresholds to the executed check. The example below
1712 checks the CPU utilization and specifies warning and critical thresholds.
1713
1714 ```
1715 check_nscp_api --host 10.0.10.148 --password icinga --query check_cpu --arguments show-all warning='load>40' critical='load>30'
1716 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
1717 ```
1718
1719
1720 ### nscp-local <a id="nscp-check-local"></a>
1721
1722 Icinga 2 can use the `nscp client` command to run arbitrary NSClient++ checks locally on the client.
1723
1724 You can enable these check commands by adding the following the include directive in your
1725 [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf) configuration file:
1726
1727     include <nscp>
1728
1729 You can also optionally specify an alternative installation directory for NSClient++ by adding
1730 the NscpPath constant in your [constants.conf](04-configuring-icinga-2.md#constants-conf) configuration
1731 file:
1732
1733     const NscpPath = "C:\\Program Files (x86)\\NSClient++"
1734
1735 By default Icinga 2 uses the Microsoft Installer API to determine where NSClient++ is installed. It should
1736 not be necessary to manually set this constant.
1737
1738 Note that it is not necessary to run NSClient++ as a Windows service for these commands to work.
1739
1740 The check command object for NSClient++ is available as `nscp-local`.
1741
1742 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1743
1744 Name            | Description
1745 ----------------|--------------
1746 nscp_log_level  | **Optional.** The log level. Defaults to "critical".
1747 nscp_load_all   | **Optional.** Whether to load all modules. Defaults to false.
1748 nscp_modules    | **Optional.** An array of NSClient++ modules to load. Defaults to `[ "CheckSystem" ]`.
1749 nscp_boot       | **Optional.** Whether to use the --boot option. Defaults to true.
1750 nscp_query      | **Required.** The NSClient++ query. Try `nscp client -q x` for a list.
1751 nscp_arguments  | **Optional.** An array of query arguments.
1752 nscp_showall    | **Optional.** Shows more details in plugin output, default to false.
1753
1754 ### nscp-local-cpu <a id="nscp-check-local-cpu"></a>
1755
1756 Check command object for the `check_cpu` NSClient++ plugin.
1757
1758 Name                | Description
1759 --------------------|------------------
1760 nscp_cpu_time       | **Optional.** Calculate avarage usage for the given time intervals. Value has to be an array, default to [ "1m", "5m", "15m" ].
1761 nscp_cpu_warning    | **Optional.** Threshold for WARNING state in percent, default to 80.
1762 nscp_cpu_critical   | **Optional.** Threshold for CRITICAL state in percent, default to 90.
1763 nscp_cpu_arguments  | **Optional.** Additional arguments.
1764 nscp_cpu_showall    | **Optional.** Shows more details in plugin output, default to false.
1765
1766 ### nscp-local-memory <a id="nscp-check-local-memory"></a>
1767
1768 Check command object for the `check_memory` NSClient++ plugin.
1769
1770 Name                  | Description
1771 ----------------------|------------------
1772 nscp_memory_committed | **Optional.** Check for committed memory, default to false.
1773 nscp_memory_physical  | **Optional.** Check for physical memory, default to true.
1774 nscp_memory_free      | **Optional.** Switch between checking free (true) or used memory (false), default to false.
1775 nscp_memory_warning   | **Optional.** Threshold for WARNING state in percent or absolut (use MB, GB, ...), default to 80 (free=false) or 20 (free=true).
1776 nscp_memory_critical  | **Optional.** Threshold for CRITICAL state in percent or absolut (use MB, GB, ...), default to 90 (free=false) or 10 (free=true).
1777 nscp_memory_arguments | **Optional.** Additional arguments.
1778 nscp_memory_showall   | **Optional.** Shows more details in plugin output, default to false.
1779
1780 ### nscp-local-os-version <a id="nscp-check-local-os-version"></a>
1781
1782 Check command object for the `check_os_version` NSClient++ plugin.
1783
1784 This command has the same custom attributes like the `nscp-local` check command.
1785
1786 ### nscp-local-pagefile <a id="nscp-check-local-pagefile"></a>
1787
1788 Check command object for the `check_pagefile` NSClient++ plugin.
1789
1790 This command has the same custom attributes like the `nscp-local` check command.
1791
1792 ### nscp-local-process <a id="nscp-check-local-process"></a>
1793
1794 Check command object for the `check_process` NSClient++ plugin.
1795
1796 This command has the same custom attributes like the `nscp-local` check command.
1797
1798 ### nscp-local-service <a id="nscp-check-local-service"></a>
1799
1800 Check command object for the `check_service` NSClient++ plugin.
1801
1802 Name                   | Description
1803 -----------------------|------------------
1804 nscp_service_name      | **Required.** Name of service to check.
1805 nscp_service_type      | **Optional.** Type to check, default to state.
1806 nscp_service_ok        | **Optional.** State for return an OK, i.e. for type=state running, stopped, ...
1807 nscp_service_otype     | **Optional.** Dedicate type for nscp_service_ok, default to nscp_service_state.
1808 nscp_service_warning   | **Optional.** State for return an WARNING.
1809 nscp_service_wtype     | **Optional.** Dedicate type for nscp_service_warning, default to nscp_service_state.
1810 nscp_service_critical  | **Optional.** State for return an CRITICAL.
1811 nscp_service_ctype     | **Optional.** Dedicate type for nscp_service_critical, default to nscp_service_state.
1812 nscp_service_arguments | **Optional.** Additional arguments.
1813 nscp_service_showall   | **Optional.** Shows more details in plugin output, default to true.
1814
1815 ### nscp-local-uptime <a id="nscp-check-local-uptime"></a>
1816
1817 Check command object for the `check_uptime` NSClient++ plugin.
1818
1819 This command has the same custom attributes like the `nscp-local` check command.
1820
1821 ### nscp-local-version <a id="nscp-check-local-version"></a>
1822
1823 Check command object for the `check_version` NSClient++ plugin.
1824
1825 This command has the same custom attributes like the `nscp-local` check command.
1826 In addition to that the default value for `nscp_modules` is set to `[ "CheckHelpers" ]`.
1827
1828 ### nscp-local-disk <a id="nscp-check-local-disk"></a>
1829
1830 Check command object for the `check_drivesize` NSClient++ plugin.
1831
1832 Name                   | Description
1833 -----------------------|------------------
1834 nscp_disk_drive        | **Optional.** Drive character, default to all drives.
1835 nscp_disk_free         | **Optional.** Switch between checking free space (free=true) or used space (free=false), default to false.
1836 nscp_disk_warning      | **Optional.** Threshold for WARNING in percent or absolut (use MB, GB, ...), default to 80 (used) or 20 percent (free).
1837 nscp_disk_critical     | **Optional.** Threshold for CRITICAL in percent or absolut (use MB, GB, ...), default to 90 (used) or 10 percent (free).
1838 nscp_disk_arguments    | **Optional.** Additional arguments.
1839 nscp_disk_showall      | **Optional.** Shows more details in plugin output, default to true.
1840 nscp_modules           | **Optional.** An array of NSClient++ modules to load. Defaults to `[ "CheckDisk" ]`.
1841
1842 ### nscp-local-counter <a id="nscp-check-local-counter"></a>
1843
1844 Check command object for the `check_pdh` NSClient++ plugin.
1845
1846 Name                   | Description
1847 -----------------------|------------------
1848 nscp_counter_name      | **Required.** Performance counter name.
1849 nscp_counter_warning   | **Optional.** WARNING Threshold.
1850 nscp_counter_critical  | **Optional.** CRITICAL Threshold.
1851 nscp_counter_arguments | **Optional.** Additional arguments.
1852 nscp_counter_showall   | **Optional.** Shows more details in plugin output, default to false.
1853 nscp_counter_perfsyntax | **Optional.** Apply performance data label, e.g. `Total Processor Time` to avoid special character problems. Defaults to `nscp_counter_name`.
1854
1855
1856
1857 ## Plugin Check Commands for Manubulon SNMP <a id="snmp-manubulon-plugin-check-commands"></a>
1858
1859 The `SNMP Manubulon Plugin Check Commands` provide configuration for plugin check
1860 commands provided by the [SNMP Manubulon project](http://nagios.manubulon.com/index_snmp.html).
1861
1862 **Note:** Some plugin parameters are only available in Debian packages or in a
1863 [forked repository](https://github.com/dnsmichi/manubulon-snmp) with patches applied.
1864
1865 The SNMP manubulon plugin check commands assume that the global constant named `ManubulonPluginDir`
1866 is set to the path where the Manubublon SNMP plugins are installed.
1867
1868 You can enable these plugin check commands by adding the following the include directive in your
1869 [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf) configuration file:
1870
1871     include <manubulon>
1872
1873 ### Checks by Host Type
1874
1875 **N/A**      : Not available for this type.
1876
1877 **SNMP**     : Available for simple SNMP query.
1878
1879 **??**       : Untested.
1880
1881 **Specific** : Script name for platform specific checks.
1882
1883
1884   Host type               | Interface  | storage  | load/cpu  | mem | process  | env | specific
1885   ------------------------|------------|----------|-----------|-----|----------|-----|-------------------------
1886   Linux                   |   Yes      |   Yes    |   Yes     | Yes |   Yes    | No  |
1887   Windows                 |   Yes      |   Yes    |   Yes     | Yes |   Yes    | No  | check_snmp_win.pl
1888   Cisco router/switch     |   Yes      |   N/A    |   Yes     | Yes |   N/A    | Yes |
1889   HP router/switch        |   Yes      |   N/A    |   Yes     | Yes |   N/A    | No  |
1890   Bluecoat proxy          |   Yes      |   SNMP   |   Yes     | SNMP|   No     | Yes |
1891   CheckPoint on SPLAT     |   Yes      |   Yes    |   Yes     | Yes |   Yes    | No  | check_snmp_cpfw.pl
1892   CheckPoint on Nokia IP  |   Yes      |   Yes    |   Yes     | No  |   ??     | No  | check_snmp_vrrp.pl
1893   Boostedge               |   Yes      |   Yes    |   Yes     | Yes |   ??     | No  | check_snmp_boostedge.pl
1894   AS400                   |   Yes      |   Yes    |   Yes     | Yes |   No     | No  |
1895   NetsecureOne Netbox     |   Yes      |   Yes    |   Yes     | ??  |   Yes    | No  |
1896   Radware Linkproof       |   Yes      |   N/A    |   SNMP    | SNMP|   No     | No  | check_snmp_linkproof_nhr <br> check_snmp_vrrp.pl
1897   IronPort                |   Yes      |   SNMP   |   SNMP    | SNMP|   No     | Yes |
1898   Cisco CSS               |   Yes      |   ??     |   Yes     | Yes |   No     | ??  | check_snmp_css.pl
1899
1900
1901 ### snmp-env <a id="plugin-check-command-snmp-env"></a>
1902
1903 Check command object for the [check_snmp_env.pl](http://nagios.manubulon.com/snmp_env.html) plugin.
1904
1905 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1906
1907
1908 Name                    | Description
1909 ------------------------|--------------
1910 snmp_address            | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1911 snmp_nocrypt            | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
1912 snmp_community          | **Optional.** The SNMP community. Defaults to "public".
1913 snmp_port               | **Optional.** The SNMP port connection.
1914 snmp_v2                 | **Optional.** SNMP version to 2c. Defaults to false.
1915 snmp_v3                 | **Optional.** SNMP version to 3. Defaults to false.
1916 snmp_login              | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
1917 snmp_password           | **Required.** SNMP version 3 password. No value defined as default.
1918 snmp_v3_use_privpass    | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
1919 snmp_v3_use_authprotocol| **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
1920 snmp_authprotocol       | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
1921 snmp_privpass           | **Required.** SNMP version 3 priv password. No value defined as default.
1922 snmp_env_type           | **Optional.** Environment Type [cisco|nokia|bc|iron|foundry|linux]. Defaults to "cisco".
1923 snmp_env_fan            | **Optional.** Minimum fan rpm value (only needed for 'iron' & 'linux')
1924 snmp_env_celsius        | **Optional.** Maximum temp in degrees celsius (only needed for 'iron' & 'linux')
1925 snmp_perf               | **Optional.** Enable perfdata values. Defaults to true.
1926 snmp_timeout            | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
1927
1928 ### snmp-load <a id="plugin-check-command-snmp-load"></a>
1929
1930 Check command object for the [check_snmp_load.pl](http://nagios.manubulon.com/snmp_load.html) plugin.
1931
1932 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1933
1934
1935 Name                    | Description
1936 ------------------------|--------------
1937 snmp_address            | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1938 snmp_nocrypt            | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
1939 snmp_community          | **Optional.** The SNMP community. Defaults to "public".
1940 snmp_port               | **Optional.** The SNMP port connection.
1941 snmp_v2                 | **Optional.** SNMP version to 2c. Defaults to false.
1942 snmp_v3                 | **Optional.** SNMP version to 3. Defaults to false.
1943 snmp_login              | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
1944 snmp_password           | **Required.** SNMP version 3 password. No value defined as default.
1945 snmp_v3_use_privpass    | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
1946 snmp_v3_use_authprotocol| **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
1947 snmp_authprotocol       | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
1948 snmp_privpass           | **Required.** SNMP version 3 priv password. No value defined as default.
1949 snmp_warn               | **Optional.** The warning threshold. Change the `snmp_load_type` var to "netsl" for using 3 values.
1950 snmp_crit               | **Optional.** The critical threshold. Change the `snmp_load_type` var to "netsl" for using 3 values.
1951 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.
1952 snmp_perf               | **Optional.** Enable perfdata values. Defaults to true.
1953 snmp_timeout            | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
1954
1955 ### snmp-memory <a id="plugin-check-command-snmp-memory"></a>
1956
1957 Check command object for the [check_snmp_mem.pl](http://nagios.manubulon.com/snmp_mem.html) plugin.
1958
1959 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1960
1961 Name                    | Description
1962 ------------------------|--------------
1963 snmp_address            | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1964 snmp_nocrypt            | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
1965 snmp_community          | **Optional.** The SNMP community. Defaults to "public".
1966 snmp_port               | **Optional.** The SNMP port connection.
1967 snmp_v2                 | **Optional.** SNMP version to 2c. Defaults to false.
1968 snmp_v3                 | **Optional.** SNMP version to 3. Defaults to false.
1969 snmp_login              | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
1970 snmp_password           | **Required.** SNMP version 3 password. No value defined as default.
1971 snmp_v3_use_privpass    | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
1972 snmp_v3_use_authprotocol| **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
1973 snmp_authprotocol       | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
1974 snmp_privpass           | **Required.** SNMP version 3 priv password. No value defined as default.
1975 snmp_warn               | **Optional.** The warning threshold.
1976 snmp_crit               | **Optional.** The critical threshold.
1977 snmp_is_cisco           | **Optional.** Change OIDs for Cisco switches. Defaults to false.
1978 snmp_is_hp              | **Optional.** Change OIDs for HP/Procurve switches. Defaults to false.
1979 snmp_perf               | **Optional.** Enable perfdata values. Defaults to true.
1980 snmp_timeout            | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
1981
1982 ### snmp-storage <a id="plugin-check-command-snmp-storage"></a>
1983
1984 Check command object for the [check_snmp_storage.pl](http://nagios.manubulon.com/snmp_storage.html) plugin.
1985
1986 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
1987
1988 Name                    | Description
1989 ------------------------|--------------
1990 snmp_address            | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
1991 snmp_nocrypt            | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
1992 snmp_community          | **Optional.** The SNMP community. Defaults to "public".
1993 snmp_port               | **Optional.** The SNMP port connection.
1994 snmp_v2                 | **Optional.** SNMP version to 2c. Defaults to false.
1995 snmp_v3                 | **Optional.** SNMP version to 3. Defaults to false.
1996 snmp_login              | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
1997 snmp_password           | **Required.** SNMP version 3 password. No value defined as default.
1998 snmp_v3_use_privpass    | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
1999 snmp_v3_use_authprotocol| **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
2000 snmp_authprotocol       | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
2001 snmp_privpass           | **Required.** SNMP version 3 priv password. No value defined as default.
2002 snmp_warn               | **Optional.** The warning threshold.
2003 snmp_crit               | **Optional.** The critical threshold.
2004 snmp_storage_name       | **Optional.** Storage name. Default to regex "^/$$". More options available in the [snmp storage](http://nagios.manubulon.com/snmp_storage.html) documentation.
2005 snmp_perf               | **Optional.** Enable perfdata values. Defaults to true.
2006 snmp_timeout            | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
2007
2008 ### snmp-interface <a id="plugin-check-command-snmp-interface"></a>
2009
2010 Check command object for the [check_snmp_int.pl](http://nagios.manubulon.com/snmp_int.html) plugin.
2011
2012 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2013
2014 Name                        | Description
2015 ----------------------------|--------------
2016 snmp_address                | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2017 snmp_nocrypt                | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
2018 snmp_community              | **Optional.** The SNMP community. Defaults to "public".
2019 snmp_port                   | **Optional.** The SNMP port connection.
2020 snmp_v2                     | **Optional.** SNMP version to 2c. Defaults to false.
2021 snmp_v3                     | **Optional.** SNMP version to 3. Defaults to false.
2022 snmp_login                  | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
2023 snmp_password               | **Required.** SNMP version 3 password. No value defined as default.
2024 snmp_v3_use_privpass        | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
2025 snmp_v3_use_authprotocol    | **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
2026 snmp_authprotocol           | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
2027 snmp_privpass               | **Required.** SNMP version 3 priv password. No value defined as default.
2028 snmp_warn                   | **Optional.** The warning threshold.
2029 snmp_crit                   | **Optional.** The critical threshold.
2030 snmp_interface              | **Optional.** Network interface name. Default to regex "eth0".
2031 snmp_interface_inverse      | **Optional.** Inverse Interface check, down is ok. Defaults to false as it is missing.
2032 snmp_interface_perf         | **Optional.** Check the input/ouput bandwidth of the interface. Defaults to true.
2033 snmp_interface_label        | **Optional.** Add label before speed in output: in=, out=, errors-out=, etc.
2034 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.
2035 snmp_interface_percent      | **Optional.** Output performance data in % of max speed. Defaults to false.
2036 snmp_interface_kbits        | **Optional.** Make the warning and critical levels in KBits/s. Defaults to true.
2037 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.
2038 snmp_interface_64bit        | **Optional.** Use 64 bits counters instead of the standard counters when checking bandwidth & performance data for interface >= 1Gbps. Defaults to false.
2039 snmp_interface_errors       | **Optional.** Add error & discard to Perfparse output. Defaults to true.
2040 snmp_interface_noregexp     | **Optional.** Do not use regexp to match interface name in description OID. Defaults to false.
2041 snmp_interface_delta        | **Optional.** Delta time of perfcheck. Defaults to "300" (5 min).
2042 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.
2043 snmp_interface_ifname       | **Optional.** Switch from IF-MIB::ifDescr to IF-MIB::ifName when looking up the interface's name.
2044 snmp_interface_ifalias      | **Optional.** Switch from IF-MIB::ifDescr to IF-MIB::ifAlias when looking up the interface's name.
2045 snmp_interface_weathermap   | **Optional.** Output data for ["weathermap" lines](http://docs.nagvis.org/1.9/en_US/lines_weathermap_style.html) in NagVis. **Depends** on `snmp_interface_perf` set to true. Defaults to `false`. **Note**: Available in `check_snmp_int.pl v2.1.0`.
2046 snmp_perf                   | **Optional.** Enable perfdata values. Defaults to true.
2047 snmp_timeout                | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
2048
2049 ### snmp-process <a id="plugin-check-command-snmp-process"></a>
2050
2051 Check command object for the [check_snmp_process.pl](http://nagios.manubulon.com/snmp_process.html) plugin.
2052
2053 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2054
2055 Name                       | Description
2056 ---------------------------|--------------
2057 snmp_address               | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2058 snmp_nocrypt               | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
2059 snmp_community             | **Optional.** The SNMP community. Defaults to "public".
2060 snmp_port                  | **Optional.** The SNMP port connection.
2061 snmp_v2                    | **Optional.** SNMP version to 2c. Defaults to false.
2062 snmp_v3                    | **Optional.** SNMP version to 3. Defaults to false.
2063 snmp_login                 | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
2064 snmp_password              | **Required.** SNMP version 3 password. No value defined as default.
2065 snmp_v3_use_privpass       | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
2066 snmp_v3_use_authprotocol   | **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
2067 snmp_authprotocol          | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
2068 snmp_privpass              | **Required.** SNMP version 3 priv password. No value defined as default..
2069 snmp_warn                  | **Optional.** The warning threshold.
2070 snmp_crit                  | **Optional.** The critical threshold.
2071 snmp_process_name          | **Optional.** Name of the process (regexp). No trailing slash!. Defaults to ".*".
2072 snmp_perf                  | **Optional.** Enable perfdata values. Defaults to true.
2073 snmp_timeout               | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
2074 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.
2075 snmp_process_mem_usage     | **Optional.** Define to check memory usage for the process. Defaults to false.
2076 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".
2077 snmp_process_cpu_usage     | **Optional.** Define to check CPU usage for the process. Defaults to false.
2078 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".
2079
2080 ### snmp-service <a id="plugin-check-command-snmp-service"></a>
2081
2082 Check command object for the [check_snmp_win.pl](http://nagios.manubulon.com/snmp_windows.html) plugin.
2083
2084 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2085
2086 Name                       | Description
2087 ---------------------------|--------------
2088 snmp_address               | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2089 snmp_nocrypt               | **Optional.** Define SNMP encryption. If set to `false`, `snmp_v3` needs to be enabled. Defaults to `true` (no encryption).
2090 snmp_community             | **Optional.** The SNMP community. Defaults to "public".
2091 snmp_port                  | **Optional.** The SNMP port connection.
2092 snmp_v2                    | **Optional.** SNMP version to 2c. Defaults to false.
2093 snmp_v3                    | **Optional.** SNMP version to 3. Defaults to false.
2094 snmp_login                 | **Optional.** SNMP version 3 username. Defaults to "snmpuser".
2095 snmp_password              | **Required.** SNMP version 3 password. No value defined as default.
2096 snmp_v3_use_privpass       | **Optional.** Define to use SNMP version 3 priv password. Defaults to false.
2097 snmp_v3_use_authprotocol   | **Optional.** Define to use SNMP version 3 authentication protocol. Defaults to false.
2098 snmp_authprotocol          | **Optional.** SNMP version 3 authentication protocol. Defaults to "md5,des".
2099 snmp_privpass              | **Required.** SNMP version 3 priv password. No value defined as default..
2100 snmp_timeout               | **Optional.** The command timeout in seconds. Defaults to 5 seconds.
2101 snmp_service_name          | **Optional.** Comma separated names of services (perl regular expressions can be used for every one). By default, it is not case sensitive. eg. ^dns$. Defaults to ".*".
2102 snmp_service_count         | **Optional.** Compare matching services with a specified number instead of the number of names provided.
2103 snmp_service_showall       | **Optional.** Show all services in the output, instead of only the non-active ones. Defaults to false.
2104 snmp_service_noregexp      | **Optional.** Do not use regexp to match NAME in service description. Defaults to false.
2105
2106
2107 ## Contributed Plugin Check Commands <a id="plugin-contrib"></a>
2108
2109 The contributed Plugin Check Commands provides various additional command definitions
2110 contributed by community members.
2111
2112 These check commands assume that the global constant named `PluginContribDir`
2113 is set to the path where the user installs custom plugins and can be enabled by
2114 uncommenting the corresponding line in [icinga2.conf](04-configuring-icinga-2.md#icinga2-conf):
2115
2116 ```
2117 vim /etc/icinga2/icinga2.conf
2118
2119 include <plugin-contrib>
2120 ```
2121
2122 This is enabled by default since Icinga 2 2.5.0.
2123
2124 ### Databases <a id="plugin-contrib-databases"></a>
2125
2126 This category contains plugins for various database servers.
2127
2128 #### db2_health <a id="plugin-contrib-command-db2_health"></a>
2129
2130 The [check_db2_health](https://labs.consol.de/nagios/check_db2_health/) plugin
2131 uses the `DBD::DB2` Perl library to monitor a [DB2](https://www.ibm.com/support/knowledgecenter/SSEPGG_11.1.0/)
2132 database.
2133
2134 The Git repository is located on [GitHub](https://github.com/lausser/check_db2_health).
2135
2136 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2137
2138 Name                             | Description
2139 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2140 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)
2141 db2_health_username           | **Optional.** The username for the database connection.
2142 db2_health_password           | **Optional.** The password for the database connection.
2143 db2_health_port               | **Optional.** The port where DB2 is listening.
2144 db2_health_warning            | **Optional.** The warning threshold depending on the mode.
2145 db2_health_critical           | **Optional.** The critical threshold depending on the mode.
2146 db2_health_mode               | **Required.** The mode uses predefined keywords for the different checks. For example "connection-time", "database-usage" or "sql".
2147 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).
2148 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.
2149 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.
2150 db2_health_regexp             | **Optional.** If set to true, "db2_health_name" will be interpreted as a regular expression. Defaults to false.
2151 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".
2152 db2_health_maxinactivity      | **Optional.** Used for the maximum amount of time a certain event has not happened.
2153 db2_health_mitigation         | **Optional.** Classifies the severity of an offline tablespace.
2154 db2_health_lookback           | **Optional.** How many days in the past db2_health check should look back to calculate exitcode.
2155 db2_health_report             | **Optional.** Report can be used to output only the bad news. Possible values are "short", "long", "html". Defaults to `short`.
2156 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".
2157 db2_health_env_db2_version    | **Optional.** Specifies the DB2 version as environment variable `DB2_VERSION`.
2158
2159 #### mssql_health <a id="plugin-contrib-command-mssql_health"></a>
2160
2161 The [check_mssql_health](https://labs.consol.de/nagios/check_mssql_health/index.html) plugin
2162 uses the `DBD::Sybase` Perl library based on [FreeTDS](http://www.freetds.org/) to monitor a
2163 [MS SQL](https://www.microsoft.com/en-us/sql-server/) server.
2164
2165 The Git repository is located on [GitHub](https://github.com/lausser/check_mssql_health).
2166
2167 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2168
2169 Name                             | Description
2170 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2171 mssql_health_hostname            | **Optional.** Specifies the database hostname or address. No default because you typically use "mssql_health_server".
2172 mssql_health_username            | **Optional.** The username for the database connection.
2173 mssql_health_password            | **Optional.** The password for the database connection.
2174 mssql_health_port                | **Optional.** Specifies the database port. No default because you typically use "mssql_health_server".
2175 mssql_health_server              | **Optional.** The name of a predefined connection (in freetds.conf).
2176 mssql_health_currentdb           | **Optional.** The name of a database which is used as the current database for the connection.
2177 mssql_health_offlineok           | **Optional.** Set this to true if offline databases are perfectly ok for you. Defaults to false.
2178 mssql_health_nooffline           | **Optional.** Set this to true to ignore offline databases. Defaults to false.
2179 mssql_health_dbthresholds        | **Optional.** With this parameter thresholds are read from the database table check_mssql_health_thresholds.
2180 mssql_health_notemp              | **Optional.** Set this to true to ignore temporary databases/tablespaces. Defaults to false.
2181 mssql_health_commit              | **Optional.** Set this to true to turn on autocommit for the dbd::sybase module. Defaults to false.
2182 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).
2183 mssql_health_mode                | **Required.** The mode uses predefined keywords for the different checks. For example "connection-time", "database-free" or "sql".
2184 mssql_health_regexp              | **Optional.** If set to true, "mssql_health_name" will be interpreted as a regular expression. Defaults to false.
2185 mssql_health_warning             | **Optional.** The warning threshold depending on the mode.
2186 mssql_health_critical            | **Optional.** The critical threshold depending on the mode.
2187 mssql_health_warningx            | **Optional.** A possible override for the warning threshold.
2188 mssql_health_criticalx           | **Optional.** A possible override for the critical threshold.
2189 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".
2190 mssql_health_name                | **Optional.** Depending on the mode this could be the database name or a SQL statement.
2191 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.
2192 mssql_health_name3               | **Optional.** Additional argument used for 'database-file-free' mode for example.
2193 mssql_health_extraopts           | **Optional.** Read command line arguments from an external file.
2194 mssql_health_blacklist           | **Optional.** Blacklist some (missing/failed) components"
2195 mssql_health_mitigation          | **Optional.** "The parameter allows you to change a critical error to a warning."
2196 mssql_health_lookback            | **Optional.** The amount of time you want to look back when calculating average rates.
2197 mssql_health_environment         | **Optional.** Add a variable to the plugin's environment."
2198 mssql_health_negate              | **Optional.** Emulate the negate plugin. --negate warning=critical --negate unknown=critical."
2199 mssql_health_morphmessage        | **Optional.** Modify the final output message."
2200 mssql_health_morphperfdata       | **Optional.** The parameter allows you to change performance data labels."
2201 mssql_health_selectedperfdata    | **Optional.** The parameter allows you to limit the list of performance data."
2202 mssql_health_report              | **Optional.** Report can be used to output only the bad news. Possible values are "short", "long", "html". Defaults to `short`.
2203 mssql_health_multiline           | **Optional.** Multiline output."
2204 mssql_health_withmymodulesdyndir | **Optional.** Add-on modules for the my-modes will be searched in this directory."
2205 mssql_health_statefilesdir       | **Optional.** An alternate directory where the plugin can save files."
2206 mssql_health_isvalidtime         | **Optional.** Signals the plugin to return OK if now is not a valid check time."
2207 mssql_health_timeout             | **Optional.** Plugin timeout. Defaults to 15s.
2208
2209 #### mysql_health <a id="plugin-contrib-command-mysql_health"></a>
2210
2211 The [check_mysql_health](https://labs.consol.de/nagios/check_mysql_health/index.html) plugin
2212 uses the `DBD::MySQL` Perl library to monitor a
2213 [MySQL](https://dev.mysql.com/downloads/mysql/) or [MariaDB](https://mariadb.org/about/) database.
2214
2215 The Git repository is located on [GitHub](https://github.com/lausser/check_mysql_health).
2216
2217 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2218
2219 Name                             | Description
2220 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2221 mysql_health_hostname            | **Required.** Specifies the database hostname or address. Defaults to "$address$" or "$address6$" if the `address` attribute is not set.
2222 mysql_health_port                | **Optional.** Specifies the database port. Defaults to 3306 (or 1186 for "mysql_health_mode" cluster).
2223 mysql_health_socket              | **Optional.** Specifies the database unix socket. No default.
2224 mysql_health_username            | **Optional.** The username for the database connection.
2225 mysql_health_password            | **Optional.** The password for the database connection.
2226 mysql_health_database            | **Optional.** The database to connect to. Defaults to information_schema.
2227 mysql_health_warning             | **Optional.** The warning threshold depending on the mode.
2228 mysql_health_critical            | **Optional.** The critical threshold depending on the mode.
2229 mysql_health_warningx            | **Optional.** The extended warning thresholds depending on the mode.
2230 mysql_health_criticalx           | **Optional.** The extended critical thresholds depending on the mode.
2231 mysql_health_mode                | **Required.** The mode uses predefined keywords for the different checks. For example "connection-time", "slave-lag" or "sql".
2232 mysql_health_method              | **Optional.** How the plugin should connect to the database (`dbi` for using DBD::Mysql (default), `mysql` for using the mysql-Tool).
2233 mysql_health_commit              | **Optional.** Turns on autocommit for the dbd::* module.
2234 mysql_health_notemp              | **Optional.** Ignore temporary databases/tablespaces.
2235 mysql_health_nooffline           | **Optional.** Skip the offline databases.
2236 mysql_health_regexp              | **Optional.** Parameter name/name2/name3 will be interpreted as (perl) regular expression.
2237 mysql_health_name                | **Optional.** The name of a specific component to check.
2238 mysql_health_name2               | **Optional.** The secondary name of a component.
2239 mysql_health_name3               | **Optional.** The tertiary name of a component.
2240 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".
2241 mysql_health_labelformat         | **Optional.** One of those formats pnp4nagios or groundwork. Defaults to pnp4nagios.
2242 mysql_health_extraopts           | **Optional.** Read command line arguments from an external file.
2243 mysql_health_blacklist           | **Optional.** Blacklist some (missing/failed) components"
2244 mysql_health_mitigation          | **Optional.** "The parameter allows you to change a critical error to a warning."
2245 mysql_health_lookback            | **Optional.** The amount of time you want to look back when calculating average rates."
2246 mysql_health_environment         | **Optional.** Add a variable to the plugin's environment."
2247 mysql_health_morphmessage        | **Optional.** Modify the final output message."
2248 mysql_health_morphperfdata       | **Optional.** The parameter allows you to change performance data labels."
2249 mysql_health_selectedperfdata    | **Optional.** The parameter allows you to limit the list of performance data."
2250 mysql_health_report              | **Optional.** Can be used to shorten the output."
2251 mysql_health_multiline           | **Optional.** Multiline output."
2252 mysql_health_negate              | **Optional.** Emulate the negate plugin. --negate warning=critical --negate unknown=critical."
2253 mysql_health_withmymodulesdyndir | **Optional.** Add-on modules for the my-modes will be searched in this directory."
2254 mysql_health_statefilesdir       | **Optional.** An alternate directory where the plugin can save files."
2255 mysql_health_isvalidtime         | **Optional.** Signals the plugin to return OK if now is not a valid check time."
2256 mysql_health_timeout             | **Optional.** Plugin timeout. Defaults to 60s.
2257
2258 #### oracle_health <a id="plugin-contrib-command-oracle_health"></a>
2259
2260 The [check_oracle_health](https://labs.consol.de/nagios/check_oracle_health/index.html) plugin
2261 uses the `DBD::Oracle` Perl library to monitor an [Oracle](https://www.oracle.com/database/) database.
2262
2263 The Git repository is located on [GitHub](https://github.com/lausser/check_oracle_health).
2264
2265 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2266
2267 Name                             | Description
2268 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2269 oracle_health_connect            | **Required.** Specifies the database connection string (from tnsnames.ora).
2270 oracle_health_username           | **Optional.** The username for the database connection.
2271 oracle_health_password           | **Optional.** The password for the database connection.
2272 oracle_health_warning            | **Optional.** The warning threshold depending on the mode.
2273 oracle_health_critical           | **Optional.** The critical threshold depending on the mode.
2274 oracle_health_mode               | **Required.** The mode uses predefined keywords for the different checks. For example "connection-time", "flash-recovery-area-usage" or "sql".
2275 oracle_health_method             | **Optional.** How the plugin should connect to the database (`dbi` for using DBD::Oracle (default), `sqlplus` for using the sqlplus-Tool).
2276 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.
2277 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.
2278 oracle_health_regexp             | **Optional.** If set to true, "oracle_health_name" will be interpreted as a regular expression. Defaults to false.
2279 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".
2280 oracle_health_ident              | **Optional.** If set to true, outputs instance and database names. Defaults to false.
2281 oracle_health_commit             | **Optional.** Set this to true to turn on autocommit for the dbd::oracle module. Defaults to false.
2282 oracle_health_noperfdata         | **Optional.** Set this to true if you want to disable perfdata. Defaults to false.
2283 oracle_health_timeout            | **Optional.** Plugin timeout. Defaults to 60s.
2284 oracle_health_report             | **Optional.** Select the plugin output format. Can be short or long. Default to long.
2285
2286 Environment Macros:
2287
2288 Name                | Description
2289 --------------------|------------------------------------------------------------------------------------------------------------------------------------------
2290 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".
2291 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".
2292
2293 #### postgres <a id="plugin-contrib-command-postgres"></a>
2294
2295 The [check_postgres](https://bucardo.org/wiki/Check_postgres) plugin
2296 uses the `psql` binary to monitor a [PostgreSQL](https://www.postgresql.org/about/) database.
2297
2298 The Git repository is located on [GitHub](https://github.com/bucardo/check_postgres).
2299
2300 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2301
2302 Name                             | Description
2303 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2304 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.
2305 postgres_port        | **Optional.** Specifies the database port. Defaults to 5432.
2306 postgres_dbname      | **Optional.** Specifies the database name to connect to. Defaults to "postgres" or "template1".
2307 postgres_dbuser      | **Optional.** The username for the database connection. Defaults to "postgres".
2308 postgres_dbpass      | **Optional.** The password for the database connection. You can use a .pgpass file instead.
2309 postgres_dbservice   | **Optional.** Specifies the service name to use inside of pg_service.conf.
2310 postgres_warning     | **Optional.** Specifies the warning threshold, range depends on the action.
2311 postgres_critical    | **Optional.** Specifies the critical threshold, range depends on the action.
2312 postgres_include     | **Optional.** Specifies name(s) items to specifically include (e.g. tables), depends on the action.
2313 postgres_exclude     | **Optional.** Specifies name(s) items to specifically exclude (e.g. tables), depends on the action.
2314 postgres_includeuser | **Optional.** Include objects owned by certain users.
2315 postgres_excludeuser | **Optional.** Exclude objects owned by certain users.
2316 postgres_standby     | **Optional.** Assume that the server is in continious WAL recovery mode if set to true. Defaults to false.
2317 postgres_production  | **Optional.** Assume that the server is in production mode if set to true. Defaults to false.
2318 postgres_action      | **Required.** Determines the test executed.
2319 postgres_unixsocket  | **Optional.** If "postgres_unixsocket" is set to true, the unix socket is used instead of an address. Defaults to false.
2320 postgres_query       | **Optional.** Query for "custom_query" action.
2321 postgres_valtype     | **Optional.** Value type of query result for "custom_query".
2322 postgres_reverse     | **Optional.** If "postgres_reverse" is set, warning and critical values are reversed for "custom_query" action.
2323 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).
2324
2325 #### mongodb <a id="plugin-contrib-command-mongodb"></a>
2326
2327 The [check_mongodb.py](https://github.com/mzupan/nagios-plugin-mongodb) plugin
2328 uses the `pymongo` Python library to monitor a [MongoDB](https://docs.mongodb.com/manual/) instance.
2329
2330 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2331
2332 Name                             | Description
2333 ---------------------------------|------------------------------------------------------------------------------------------------------------------------------
2334 mongodb_host                     | **Required.** Specifies the hostname or address.
2335 mongodb_port                     | **Required.** The port mongodb is runnung on.
2336 mongodb_user                     | **Optional.** The username you want to login as
2337 mongodb_passwd                   | **Optional.** The password you want to use for that user
2338 mongodb_warning                  | **Optional.** The warning threshold we want to set
2339 mongodb_critical                 | **Optional.** The critical threshold we want to set
2340 mongodb_action                   | **Required.** The action you want to take
2341 mongodb_maxlag                   | **Optional.** Get max replication lag (for replication_lag action only)
2342 mongodb_mappedmemory             | **Optional.** Get mapped memory instead of resident (if resident memory can not be read)
2343 mongodb_perfdata                 | **Optional.** Enable output of Nagios performance data
2344 mongodb_database                 | **Optional.** Specify the database to check
2345 mongodb_alldatabases             | **Optional.** Check all databases (action database_size)
2346 mongodb_ssl                      | **Optional.** Connect using SSL
2347 mongodb_replicaset               | **Optional.** Connect to replicaset
2348 mongodb_replcheck                | **Optional.** If set to true, will enable the mongodb_replicaset value needed for "replica_primary" check
2349 mongodb_querytype                | **Optional.** The query type to check [query\|insert\|update\|delete\|getmore\|command] from queries_per_second
2350 mongodb_collection               | **Optional.** Specify the collection to check
2351 mongodb_sampletime               | **Optional.** Time used to sample number of pages faults
2352
2353 #### elasticsearch <a id="plugin-contrib-command-elasticsearch"></a>
2354
2355 The [check_elasticsearch](https://github.com/anchor/nagios-plugin-elasticsearch) plugin
2356 uses the HTTP API to monitor an [Elasticsearch](https://www.elastic.co/products/elasticsearch) node.
2357
2358 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2359
2360 Name                         | Description
2361 -----------------------------|-------------------------------------------------------------------------------------------------------
2362 elasticsearch_failuredomain  | **Optional.** A comma-separated list of ElasticSearch attributes that make up your cluster's failure domain.
2363 elasticsearch_host           | **Optional.** Hostname or network address to probe. Defaults to 'localhost'.
2364 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.
2365 elasticsearch_port           | **Optional.** TCP port to probe.  The ElasticSearch API should be listening here. Defaults to 9200.
2366 elasticsearch_prefix         | **Optional.** Optional prefix (e.g. 'es') for the ElasticSearch API. Defaults to ''.
2367 elasticsearch_yellowcritical | **Optional.** Instead of issuing a 'warning' for a yellow cluster state, issue a 'critical' alert. Defaults to false.
2368
2369 #### redis <a id="plugin-contrib-command-redis"></a>
2370
2371 The [check_redis.pl](https://github.com/willixix/naglio-plugins/blob/master/check_redis.pl) plugin
2372 uses the `Redis` Perl library to monitor a [Redis](https://redis.io/) instance. The plugin can
2373 measure response time, hitrate, memory utilization, check replication synchronization, etc. It is
2374 also possible to test data in a specified key and calculate averages or summaries on ranges.
2375
2376 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2377
2378 Name                     | Description
2379 -------------------------|--------------------------------------------------------------------------------------------------------------
2380 redis_hostname           | **Required.** Hostname or IP Address to check. Defaults to "127.0.0.1".
2381 redis_port               | **Optional.** Port number to query. Default to "6379".
2382 redis_database           | **Optional.** Database name (usually a number) to query, needed for **redis_query**.
2383 redis_password           | **Optional.** Password for Redis authentication. Safer alternative is to put them in a file and use **redis_credentials**.
2384 redis_credentials        | **Optional.** Credentials file to read for Redis authentication.
2385 redis_timeout            | **Optional.** Allows to set timeout for execution of this plugin.
2386 redis_variables          | **Optional.** List of variables from info data to do threshold checks on.
2387 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.
2388 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.
2389 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.
2390 redis_perfvars           | **Optional.** This allows to list variables which values will go only into perfparse output (and not for threshold checking).
2391 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.
2392 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".
2393 redis_query              | **Optional.** Option specifies key to query and optional variable name to assign the results to after.
2394 redis_option             | **Optional.** Specifiers are separated by "," and must include NAME or PATTERN.
2395 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.
2396 redis_hitrate            | **Optional.** Calculates Hitrate and specify values are interpreted as WARNING and CRITICAL thresholds.
2397 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.
2398 redis_total_memory       | **Optional.** Amount of memory on a system for memory utilization calculation. Use system memory or max_memory setting of redis.
2399 redis_replication_delay  | **Optional.** Allows to set threshold on replication delay info.
2400
2401
2402 ### Hardware <a id="plugin-contrib-hardware"></a>
2403
2404 This category includes all plugin check commands for various hardware checks.
2405
2406 #### hpasm <a id="plugin-contrib-command-hpasm"></a>
2407
2408 The [check_hpasm](https://labs.consol.de/de/nagios/check_hpasm/index.html) plugin
2409 monitors the hardware health of HP Proliant Servers, provided that the `hpasm`
2410 (HP Advanced Server Management) software is installed. It is also able to monitor
2411 the system health of HP Bladesystems and storage systems.
2412
2413 The plugin can run in two different ways:
2414
2415 1. Local execution using the `hpasmcli` command line tool.
2416 2. Remote SNMP query which invokes the HP Insight Tools on the remote node.
2417
2418 You can either set or omit `hpasm_hostname` custom attribute and select the corresponding node.
2419
2420 The `hpasm_remote` attribute enables the plugin to execute remote SNMP queries if set to `true`.
2421 For compatibility reasons this attribute uses `true` as default value, and ensures that
2422 specifying the `hpasm_hostname` always enables remote checks.
2423
2424 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2425
2426 Name                            | Description
2427 --------------------------------|-----------------------------------------------------------------------
2428 hpasm_hostname                  | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2429 hpasm_community                 | **Optional.** SNMP community of the server (SNMP v1/2 only).
2430 hpasm_protocol                  | **Optional.** The SNMP protocol to use (default: 2c, other possibilities: 1,3).
2431 hpasm_port                      | **Optional.** The SNMP port to use (default: 161).
2432 hpasm_blacklist                 | **Optional.** Blacklist some (missing/failed) components.
2433 hpasm_ignore-dimms              | **Optional.** Ignore "N/A"-DIMM status on misc. servers (e.g. older DL320).
2434 hpasm_ignore-fan-redundancy     | **Optional.** Ignore missing redundancy partners.
2435 hpasm_customthresholds          | **Optional.** Use custom thresholds for certain temperatures.
2436 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.
2437 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.
2438 hpasm_username                  | **Optional.** The securityName for the USM security model (SNMPv3 only).
2439 hpasm_authpassword              | **Optional.** The authentication password for SNMPv3.
2440 hpasm_authprotocol              | **Optional.** The authentication protocol for SNMPv3 (md5\|sha).
2441 hpasm_privpassword              | **Optional.** The password for authPriv security level.
2442 hpasm_privprotocol              | **Optional.** The private protocol for SNMPv3 (des\|aes\|aes128\|3des\|3desde).
2443 hpasm_servertype                | **Optional.** The type of the server: proliant (default) or bladesystem.
2444 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.
2445 hpasm_remote                    | **Optional.** Run remote SNMP checks if enabled. Otherwise checks are executed locally using the `hpasmcli` binary. Defaults to `true`.
2446
2447 #### adaptec-raid <a id="plugin-contrib-command-adaptec-raid"></a>
2448
2449 The [check_adaptec_raid](https://github.com/thomas-krenn/check_adaptec_raid) plugin
2450 uses the `arcconf` binary to monitor Adaptec RAID controllers.
2451
2452 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2453
2454 Name                            | Description
2455 --------------------------------|-----------------------------------------------------------------------
2456 adaptec_controller_number       | **Required.** Controller number to monitor.
2457 arcconf_path                    | **Required.** Path to the `arcconf` binary, e.g. "/sbin/arcconf".
2458
2459 #### lsi-raid <a id="plugin-contrib-command-lsi-raid"></a>
2460
2461 The [check_lsi_raid](https://github.com/thomas-krenn/check_lsi_raid) plugin
2462 uses the `storcli` binary to monitor MegaRAID RAID controllers.
2463
2464 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2465
2466 Name                            | Description
2467 --------------------------------|-----------------------------------------------------------------------
2468 lsi_controller_number           | **Required.** Controller number to monitor.
2469 storcli_path                    | **Required.** Path to the `storcli` binary, e.g. "/usr/sbin/storcli".
2470
2471 #### smart-attributes <a id="plugin-contrib-command-smart-attributes"></a>
2472
2473 The [check_smart_attributes](https://github.com/thomas-krenn/check_smart_attributes) plugin
2474 uses the `smartctl` binary to monitor SMART values of SSDs and HDDs.
2475
2476 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2477
2478 Name                            | Description
2479 --------------------------------|-----------------------------------------------------------------------
2480 smart_attributes_config_path    | **Required.** Path to the smart attributes config file (e.g. check_smartdb.json).
2481 smart_attributes_device         | **Required.** Device name (e.g. /dev/sda) to monitor.
2482
2483
2484 ### IcingaCLI <a id="plugin-contrib-icingacli"></a>
2485
2486 This category includes all plugins using the icingacli provided by Icinga Web 2.
2487
2488 #### Business Process <a id="plugin-contrib-icingacli-businessprocess"></a>
2489
2490 This subcommand is provided by the [business process module](https://exchange.icinga.com/icinga/Business+Process)
2491 and executed as `icingacli businessprocess` CLI command.
2492
2493 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2494
2495 Name                                      | Description
2496 ------------------------------------------|-----------------------------------------------------------------------------------------
2497 icingacli_businessprocess_process         | **Required.** Business process to monitor.
2498 icingacli_businessprocess_config          | **Optional.** Configuration file containing your business process without file extension.
2499 icingacli_businessprocess_details         | **Optional.** Get details for root cause analysis. Defaults to false.
2500 icingacli_businessprocess_statetype       | **Optional.** Define which state type to look at, `soft` or `hard`. Overrides the default value inside the businessprocess module, if configured.
2501
2502
2503 ### IPMI Devices <a id="plugin-contrib-ipmi"></a>
2504
2505 This category includes all plugins for IPMI devices.
2506
2507 #### ipmi-sensor <a id="plugin-contrib-command-ipmi-sensor"></a>
2508
2509 The [check_ipmi_sensor](https://github.com/thomas-krenn/check_ipmi_sensor_v3) plugin
2510 uses the `ipmimonitoring` binary to monitor sensor data for IPMI devices. Please
2511 read the [documentation](https://www.thomas-krenn.com/en/wiki/IPMI_Sensor_Monitoring_Plugin)
2512 for installation and configuration details.
2513
2514 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2515
2516 Name                             | Description
2517 ---------------------------------|-----------------------------------------------------------------------------------------------------
2518 ipmi_address                     | **Required.** Specifies the remote host (IPMI device) to check. Defaults to "$address$".
2519 ipmi_config_file                 | **Optional.** Path to the FreeIPMI configuration file. It should contain IPMI username, IPMI password, and IPMI privilege-level.
2520 ipmi_username                    | **Optional.** The IPMI username.
2521 ipmi_password                    | **Optional.** The IPMI password.
2522 ipmi_privilege_level             | **Optional.** The IPMI privilege level of the IPMI user.
2523 ipmi_backward_compatibility_mode | **Optional.** Enable backward compatibility mode, useful for FreeIPMI 0.5.\* (this omits FreeIPMI options "--quiet-cache" and "--sdr-cache-recreate").
2524 ipmi_sensor_type                 | **Optional.** Limit sensors to query based on IPMI sensor type. Examples for IPMI sensor types are 'Fan', 'Temperature' and 'Voltage'.
2525 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.
2526 ipmi_exclude_sensor_id           | **Optional.** Exclude sensor matching ipmi_sensor_id.
2527 ipmi_exclude_sensor              | **Optional.** Exclude sensor based on IPMI sensor type. (Comma-separated)
2528 ipmi_exclude_sel                 | **Optional.** Exclude SEL entries of specific sensor types. (comma-separated list).
2529 ipmi_sensor_id                   | **Optional.** Include sensor matching ipmi_sensor_id.
2530 ipmi_protocol_lan_version        | **Optional.** Change the protocol LAN version. Defaults to "LAN_2_0".
2531 ipmi_number_of_active_fans       | **Optional.** Number of fans that should be active. Otherwise a WARNING state is returned.
2532 ipmi_show_fru                    | **Optional.** Print the product serial number if it is available in the IPMI FRU data.
2533 ipmi_no_sel_checking             | **Optional.** Turn off system event log checking via ipmi-sel.
2534 ipmi_no_thresholds               | **Optional.** Turn off performance data thresholds from output-sensor-thresholds.
2535 ipmi_verbose                     | **Optional.** Be Verbose multi line output, also with additional details for warnings.
2536 ipmi_debug                       | **Optional.** Be Verbose debugging output, followed by normal multi line output.
2537
2538 #### ipmi-alive <a id="plugin-contrib-command-ipmi-alive"></a>
2539
2540 The `ipmi-alive` check commands allows you to create a ping check for the IPMI Interface.
2541
2542 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2543
2544 Name                             | Description
2545 ---------------------------------|-----------------------------------------------------------------------------------------------------
2546 ping_address                     | **Optional.** The address of the IPMI interface. Defaults to "$address$" if the IPMI interface's `address` attribute is set, "$address6$" otherwise.
2547 ping_wrta                        | **Optional.** The RTA warning threshold in milliseconds. Defaults to 5000.
2548 ping_wpl                         | **Optional.** The packet loss warning threshold in %. Defaults to 100.
2549 ping_crta                        | **Optional.** The RTA critical threshold in milliseconds. Defaults to 5000.
2550 ping_cpl                         | **Optional.** The packet loss critical threshold in %. Defaults to 100.
2551 ping_packets                     | **Optional.** The number of packets to send. Defaults to 1.
2552 ping_timeout                     | **Optional.** The plugin timeout in seconds. Defaults to 0 (no timeout).
2553
2554
2555 ### Log Management <a id="plugins-contrib-log-management"></a>
2556
2557 This category includes all plugins for log management, for example [Logstash](https://www.elastic.co/products/logstash).
2558
2559 #### logstash <a id="plugins-contrib-command-logstash"></a>
2560
2561 The [logstash](https://github.com/widhalmt/check_logstash) plugin connects to
2562 the Node API of Logstash. This plugin requires at least Logstash version 5.0.x.
2563
2564 The Node API is not activated by default. You have to configure your Logstash
2565 installation in order to allow plugin connections.
2566
2567 Name                       | Description
2568 ---------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2569 logstash_hostname          | **Optional.** Hostname where Logstash is running. Defaults to `check_address`
2570 logstash_port              | **Optional.** Port where Logstash is listening for API requests. Defaults to 9600
2571 logstash_filedesc_warn     | **Optional.** Warning threshold of file descriptor usage in percent. Defaults to 85 (percent).
2572 logstash_filedesc_crit     | **Optional.** Critical threshold of file descriptor usage in percent. Defaults to 95 (percent).
2573 logstash_heap_warn         | **Optional.** Warning threshold of heap usage in percent. Defaults to 70 (percent).
2574 logstash_heap_crit         | **Optional.** Critical threshold of heap usage in percent Defaults to 80 (percent).
2575 logstash_inflight_warn     | **Optional.** Warning threshold of inflight events.
2576 logstash_inflight_crit     | **Optional.** Critical threshold of inflight events.
2577 logstash_cpu_warn          | **Optional.** Warning threshold for cpu usage in percent.
2578 logstash_cpu_crit          | **Optional.** Critical threshold for cpu usage in percent.
2579
2580
2581 ### Metrics <a id="plugin-contrib-metrics"></a>
2582
2583 This category includes all plugins for metric-based checks.
2584
2585 #### graphite <a id="plugin-contrib-command-graphite"></a>
2586
2587 The [check_graphite](https://github.com/obfuscurity/nagios-scripts) plugin
2588 uses the `rest-client` Ruby library to monitor a [Graphite](https://graphiteapp.org) instance.
2589
2590 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2591
2592 Name                                | Description
2593 ------------------------------------|-----------------------------------------------------------------------------------------------------
2594 graphite_url                        | **Required.** Target url.
2595 graphite_metric                     | **Required.** Metric path string.
2596 graphite_shortname                  | **Optional.** Metric short name (used for performance data).
2597 graphite_duration                   | **Optional.** Length, in minute of data to parse (default: 5).
2598 graphite_function                   | **Optional.** Function applied to metrics for thresholds (default: average).
2599 graphite_warning                    | **Required.** Warning threshold.
2600 graphite_critical                   | **Required.** Critical threshold.
2601 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.
2602 graphite_message                    | **Optional.** Text message to output (default: "metric count:").
2603 graphite_zero_on_error              | **Optional.** Return 0 on a graphite 500 error.
2604 graphite_link_graph                 | **Optional.** Add a link in the plugin output, showing a 24h graph for this metric in graphite.
2605
2606 ### Network Components <a id="plugin-contrib-network-components"></a>
2607
2608 This category includes all plugins for various network components like routers, switches and firewalls.
2609
2610 #### interfacetable <a id="plugin-contrib-command-interfacetable"></a>
2611
2612 The [check_interfacetable_v3t](http://www.tontonitch.com/tiki/tiki-index.php?page=Nagios+plugins+-+interfacetable_v3t) plugin
2613 generates a html page containing information about the monitored node and all of its interfaces.
2614
2615 The Git repository is located on [GitHub](https://github.com/Tontonitch/interfacetable_v3t).
2616
2617 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2618
2619 Name                                | Description
2620 ------------------------------------|-----------------------------------------------------------------------------------------------------
2621 interfacetable_hostquery            | **Required.** Specifies the remote host to poll. Defaults to "$address$".
2622 interfacetable_hostdisplay          | **Optional.** Specifies the hostname to display in the HTML link. Defaults to "$host.display_name$".
2623 interfacetable_regex                | **Optional.** Interface names and property names for some other options will be interpreted as regular expressions. Defaults to false.
2624 interfacetable_outputshort          | **Optional.** Reduce the verbosity of the plugin output. Defaults to false.
2625 interfacetable_exclude              | **Optional.** Comma separated list of interfaces globally excluded from the monitoring.
2626 interfacetable_include              | **Optional.** Comma separated list of interfaces globally included in the monitoring.
2627 interfacetable_aliasmatching        | **Optional.** Allow you to specify alias in addition to interface names. Defaults to false.
2628 interfacetable_excludetraffic       | **Optional.** Comma separated list of interfaces excluded from traffic checks.
2629 interfacetable_includetraffic       | **Optional.** Comma separated list of interfaces included for traffic checks.
2630 interfacetable_warningtraffic       | **Optional.** Interface traffic load percentage leading to a warning alert.
2631 interfacetable_criticaltraffic      | **Optional.** Interface traffic load percentage leading to a critical alert.
2632 interfacetable_pkt                  | **Optional.** Add unicast/non-unicast pkt stats for each interface.
2633 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.
2634 interfacetable_trackproperty        | **Optional.** List of tracked properties.
2635 interfacetable_excludeproperty      | **Optional.** Comma separated list of interfaces excluded from the property tracking.
2636 interfacetable_includeproperty      | **Optional.** Comma separated list of interfaces included in the property tracking.
2637 interfacetable_community            | **Optional.** Specifies the snmp v1/v2c community string. Defaults to "public" if using snmp v1/v2c, ignored using v3.
2638 interfacetable_snmpv2               | **Optional.** Use snmp v2c. Defaults to false.
2639 interfacetable_login                | **Optional.** Login for snmpv3 authentication.
2640 interfacetable_passwd               | **Optional.** Auth password for snmpv3 authentication.
2641 interfacetable_privpass             | **Optional.** Priv password for snmpv3 authentication.
2642 interfacetable_protocols            | **Optional.** Authentication protocol,Priv protocol for snmpv3 authentication.
2643 interfacetable_domain               | **Optional.** SNMP transport domain.
2644 interfacetable_contextname          | **Optional.** Context name for the snmp requests.
2645 interfacetable_port                 | **Optional.** SNMP port. Defaults to standard port.
2646 interfacetable_64bits               | **Optional.** Use SNMP 64-bits counters. Defaults to false.
2647 interfacetable_maxrepetitions       | **Optional.** Increasing this value may enhance snmp query performances by gathering more results at one time.
2648 interfacetable_snmptimeout          | **Optional.** Define the Transport Layer timeout for the snmp queries.
2649 interfacetable_snmpretries          | **Optional.** Define the number of times to retry sending a SNMP message.
2650 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.
2651 interfacetable_unixsnmp             | **Optional.** Use unix snmp utilities for snmp requests. Defaults to false, which means use the perl bindings.
2652 interfacetable_enableperfdata       | **Optional.** Enable port performance data. Defaults to false.
2653 interfacetable_perfdataformat       | **Optional.** Define which performance data will be generated. Possible values are "full" (default), "loadonly", "globalonly".
2654 interfacetable_perfdatathreshold    | **Optional.** Define which thresholds are printed in the generated performance data. Possible values are "full" (default), "loadonly", "globalonly".
2655 interfacetable_perfdatadir          | **Optional.** When specified, the performance data are also written directly to a file, in the specified location.
2656 interfacetable_perfdataservicedesc  | **Optional.** Specify additional parameters for output performance data to PNP. Defaults to "$service.name$", only affects **interfacetable_perfdatadir**.
2657 interfacetable_grapher              | **Optional.** Specify the used graphing solution. Possible values are "pnp4nagios" (default), "nagiosgrapher", "netwaysgrapherv2" and "ingraph".
2658 interfacetable_grapherurl           | **Optional.** Graphing system url. Default depends on **interfacetable_grapher**.
2659 interfacetable_portperfunit         | **Optional.** Traffic could be reported in bits (counters) or in bps (calculated value).
2660 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".
2661 interfacetable_duplex               | **Optional.** Add the duplex mode property for each interface in the interface table. Defaults to false.
2662 interfacetable_stp                  | **Optional.** Add the stp state property for each interface in the interface table. Defaults to false.
2663 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"
2664 interfacetable_noipinfo             | **Optional.** Remove the ip information for each interface from the interface table. Defaults to false.
2665 interfacetable_alias                | **Optional.** Add the alias information for each interface in the interface table. Defaults to false.
2666 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.
2667 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.
2668 interfacetable_delta                | **Optional.** Set the delta used for interface throuput calculation in seconds.
2669 interfacetable_ifs                  | **Optional.** Input field separator. Defaults to ",".
2670 interfacetable_cache                | **Optional.** Define the retention time of the cached data in seconds.
2671 interfacetable_noifloadgradient     | **Optional.** Disable color gradient from green over yellow to red for the load percentage. Defaults to false.
2672 interfacetable_nohuman              | **Optional.** Do not translate bandwidth usage in human readable format. Defaults to false.
2673 interfacetable_snapshot             | **Optional.** Force the plugin to run like if it was the first launch. Defaults to false.
2674 interfacetable_timeout              | **Optional.** Define the global timeout limit of the plugin in seconds. Defaults to "15s".
2675 interfacetable_css                  | **Optional.** Define the css stylesheet used by the generated html files. Possible values are "classic", "icinga" or "icinga-alternate1".
2676 interfacetable_config               | **Optional.** Specify a config file to load.
2677 interfacetable_noconfigtable        | **Optional.** Disable configuration table on the generated HTML page. Defaults to false.
2678 interfacetable_notips               | **Optional.** Disable the tips in the generated html tables. Defaults to false.
2679 interfacetable_defaulttablesorting  | **Optional.** Default table sorting can be "index" (default) or "name".
2680 interfacetable_tablesplit           | **Optional.** Generate multiple interface tables, one per interface type. Defaults to false.
2681 interfacetable_notype               | **Optional.** Remove the interface type for each interface. Defaults to false.
2682
2683 #### iftraffic <a id="plugin-contrib-command-iftraffic"></a>
2684
2685 The [check_iftraffic](https://exchange.icinga.com/exchange/iftraffic) plugin
2686 checks the utilization of a given interface name using the SNMP protocol.
2687
2688 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2689
2690 Name                    | Description
2691 ------------------------|---------------------------------------------------------
2692 iftraffic_address       | **Required.** Specifies the remote host. Defaults to "$address$".
2693 iftraffic_community     | **Optional.** SNMP community. Defaults to "public'" if omitted.
2694 iftraffic_interface     | **Required.** Queried interface name.
2695 iftraffic_bandwidth     | **Required.** Interface maximum speed in kilo/mega/giga/bits per second.
2696 iftraffic_units         | **Optional.** Interface units can be one of these values: `g` (gigabits/s),`m` (megabits/s), `k` (kilobits/s),`b` (bits/s)
2697 iftraffic_warn          | **Optional.** Percent of bandwidth usage necessary to result in warning status (defaults to `85`).
2698 iftraffic_crit          | **Optional.** Percent of bandwidth usage necessary to result in critical status (defaults to `98`).
2699 iftraffic_max_counter   | **Optional.** Maximum counter value of net devices in kilo/mega/giga/bytes.
2700
2701 #### iftraffic64 <a id="plugin-contrib-command-iftraffic64"></a>
2702
2703 The [check_iftraffic64](https://exchange.icinga.com/exchange/iftraffic64) plugin
2704 checks the utilization of a given interface name using the SNMP protocol.
2705
2706 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2707
2708 Name                    | Description
2709 ------------------------|---------------------------------------------------------
2710 iftraffic64_address     | **Required.** Specifies the remote host. Defaults to "$address$".
2711 iftraffic64_community   | **Optional.** SNMP community. Defaults to "public'" if omitted.
2712 iftraffic64_interface   | **Required.** Queried interface name.
2713 iftraffic64_bandwidth   | **Required.** Interface maximum speed in kilo/mega/giga/bits per second.
2714 iftraffic64_units       | **Optional.** Interface units can be one of these values: `g` (gigabits/s),`m` (megabits/s), `k` (kilobits/s),`b` (bits/s)
2715 iftraffic64_warn        | **Optional.** Percent of bandwidth usage necessary to result in warning status (defaults to `85`).
2716 iftraffic64_crit        | **Optional.** Percent of bandwidth usage necessary to result in critical status (defaults to `98`).
2717 iftraffic64_max_counter | **Optional.** Maximum counter value of net devices in kilo/mega/giga/bytes.
2718
2719 #### interfaces <a id="plugin-contrib-command-interfaces"></a>
2720
2721 The [check_interfaces](https://git.netways.org/plugins/check_interfaces) plugin
2722 uses SNMP to monitor network interfaces and their utilization.
2723
2724 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2725
2726 Name                      | Description
2727 --------------------------|---------------------------------------------------------
2728 interfaces_address        | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2729 interfaces_regex          | **Optional.** Interface list regexp.
2730 interfaces_exclude_regex  | **Optional.** Interface list negative regexp.
2731 interfaces_errors         | **Optional.** Number of in errors (CRC errors for cisco) to consider a warning (default 50).
2732 interface_out_errors      | **Optional.** Number of out errors (collisions for cisco) to consider a warning (default same as in errors).
2733 interfaces_perfdata       | **Optional.** perfdata from last check result.
2734 interfaces_prefix         | **Optional.** Prefix interface names with this label.
2735 interfaces_lastcheck      | **Optional.** Last checktime (unixtime).
2736 interfaces_bandwidth      | **Optional.** Bandwidth warn level in percent.
2737 interfaces_speed          | **Optional.** Override speed detection with this value (bits per sec).
2738 interfaces_trim           | **Optional.** Cut this number of characters from the start of interface descriptions.
2739 interfaces_mode           | **Optional.** Special operating mode (default,cisco,nonbulk,bintec).
2740 interfaces_auth_proto     | **Optional.** SNMPv3 Auth Protocol (SHA\|MD5)
2741 interfaces_auth_phrase    | **Optional.** SNMPv3 Auth Phrase
2742 interfaces_priv_proto     | **Optional.** SNMPv3 Privacy Protocol (AES\|DES)
2743 interfaces_priv_phrase    | **Optional.** SNMPv3 Privacy Phrase
2744 interfaces_user           | **Optional.** SNMPv3 User
2745 interfaces_down_is_ok     | **Optional.** Disables critical alerts for down interfaces.
2746 interfaces_aliases        | **Optional.** Retrieves the interface description.
2747 interfaces_match_aliases  | **Optional.** Also match against aliases (Option --aliases automatically enabled).
2748 interfaces_timeout        | **Optional.** Sets the SNMP timeout (in ms).
2749 interfaces_sleep          | **Optional.** Sleep between every SNMP query (in ms).
2750 interfaces_names          | **Optional.** If set to true, use ifName instead of ifDescr.
2751
2752 #### nwc_health <a id="plugin-contrib-command-nwc_health"></a>
2753
2754 The [check_nwc_health](https://labs.consol.de/de/nagios/check_nwc_health/index.html) plugin
2755 uses SNMP to monitor network components. The plugin is able to generate interface statistics,
2756 check hardware (CPU, memory, fan, power, etc.), monitor firewall policies, HRSP, load-balancer
2757 pools, processor and memory usage.
2758
2759 Currently the following network components are supported: Cisco IOS, Cisco Nexus, Cisco ASA,
2760 Cisco PIX, F5 BIG-IP, CheckPoint Firewall1, Juniper NetScreen, HP Procurve, Nortel, Brocade 4100/4900,
2761 EMC DS 4700, EMC DS 24, Allied Telesyn. Blue Coat SG600, Cisco Wireless Lan Controller 5500,
2762 Brocade ICX6610-24-HPOE, Cisco UC Telefonzeugs, FOUNDRY-SN-AGENT-MIB, FRITZ!BOX 7390, FRITZ!DECT 200,
2763 Juniper IVE, Pulse-Gateway MAG4610, Cisco IronPort AsyncOS, Foundry, etc. A complete list can be
2764 found in the plugin [documentation](https://labs.consol.de/nagios/check_nwc_health/index.html).
2765
2766 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2767
2768 Name                            | Description
2769 --------------------------------|---------------------------------------------------------
2770 nwc_health_hostname             | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
2771 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).
2772 nwc_health_timeout              | **Optional.** Seconds before plugin times out (default: 15)
2773 nwc_health_blacklist            | **Optional.** Blacklist some (missing/failed) components.
2774 nwc_health_port                 | **Optional.** The SNMP port to use (default: 161).
2775 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).
2776 nwc_health_protocol             | **Optional.** The SNMP protocol to use (default: 2c, other possibilities: 1,3).
2777 nwc_health_community            | **Optional.** SNMP community of the server (SNMP v1/2 only).
2778 nwc_health_username             | **Optional.** The securityName for the USM security model (SNMPv3 only).
2779 nwc_health_authpassword         | **Optional.** The authentication password for SNMPv3.
2780 nwc_health_authprotocol         | **Optional.** The authentication protocol for SNMPv3 (md5\|sha).
2781 nwc_health_privpassword         | **Optional.** The password for authPriv security level.
2782 nwc_health_privprotocol         | **Optional.** The private protocol for SNMPv3 (des\|aes\|aes128\|3des\|3desde).
2783 nwc_health_contextengineid      | **Optional.** The context engine id for SNMPv3 (10 to 64 hex characters).
2784 nwc_health_contextname          | **Optional.** The context name for SNMPv3 (empty represents the default context).
2785 nwc_health_name                 | **Optional.** The name of an interface (ifDescr).
2786 nwc_health_drecksptkdb          | **Optional.** This parameter must be used instead of --name, because Devel::ptkdb is stealing the latter from the command line.
2787 nwc_health_alias                | **Optional.** The alias name of a 64bit-interface (ifAlias)
2788 nwc_health_regexp               | **Optional.** A flag indicating that --name is a regular expression
2789 nwc_health_ifspeedin            | **Optional.** Override the ifspeed oid of an interface (only inbound)
2790 nwc_health_ifspeedout           | **Optional.** Override the ifspeed oid of an interface (only outbound)
2791 nwc_health_ifspeed              | **Optional.** Override the ifspeed oid of an interface
2792 nwc_health_units                | **Optional.** One of %, B, KB, MB, GB, Bit, KBi, MBi, GBi. (used for e.g. mode interface-usage)
2793 nwc_health_name2                | **Optional.** The secondary name of a component.
2794 nwc_health_role                 | **Optional.** The role of this device in a hsrp group (active/standby/listen).
2795 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)
2796 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.
2797 nwc_health_warning              | **Optional.** The warning threshold
2798 nwc_health_critical             | **Optional.** The critical threshold
2799 nwc_health_warningx             | **Optional.** The extended warning thresholds
2800 nwc_health_criticalx            | **Optional.** The extended critical thresholds
2801 nwc_health_mitigation           | **Optional.** The parameter allows you to change a critical error to a warning (1) or ok (0).
2802 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.
2803 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'
2804 nwc_health_negate               | **Optional.** The parameter allows you to map exit levels, such as warning=critical.
2805 nwc_health_mymodules-dyn-dir    | **Optional.** A directory where own extensions can be found.
2806 nwc_health_servertype           | **Optional.** The type of the network device: cisco (default). Use it if auto-detection is not possible.
2807 nwc_health_statefilesdir        | **Optional.** An alternate directory where the plugin can save files.
2808 nwc_health_oids                 | **Optional.** A list of oids which are downloaded and written to a cache file. Use it together with --mode oidcache.
2809 nwc_health_offline              | **Optional.** The maximum number of seconds since the last update of cache file before it is considered too old.
2810 nwc_health_multiline            | **Optional.** Multiline output
2811
2812
2813 ### Operating System <a id="plugin-contrib-operating-system"></a>
2814
2815 This category contains plugins which receive details about your operating system
2816 or the guest system.
2817
2818 #### mem <a id="plugin-contrib-command-mem"></a>
2819
2820 The [check_mem.pl](https://github.com/justintime/nagios-plugins) plugin checks the
2821 memory usage on linux and unix hosts. It is able to count cache memory as free when
2822 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).
2823
2824 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2825
2826 Name         | Description
2827 -------------|-----------------------------------------------------------------------------------------------------------------------
2828 mem_used     | **Optional.** Tell the plugin to check for used memory in opposite of **mem_free**. Must specify one of these as true.
2829 mem_free     | **Optional.** Tell the plugin to check for free memory in opposite of **mem_used**. Must specify one of these as true.
2830 mem_cache    | **Optional.** If set to true, plugin will count cache as free memory. Defaults to false.
2831 mem_warning  | **Required.** Specify the warning threshold as number interpreted as percent.
2832 mem_critical | **Required.** Specify the critical threshold as number interpreted as percent.
2833
2834 #### running_kernel <a id="plugin-contrib-command-running_kernel"></a>
2835
2836 The [check_running_kernel](https://packages.debian.org/stretch/nagios-plugins-contrib) plugin
2837 is provided by the `nagios-plugin-contrib` package on Debian/Ubuntu.
2838
2839 Custom attributes:
2840
2841 Name                       | Description
2842 ---------------------------|-------------
2843 running\_kernel\_use\_sudo | Whether to run the plugin with `sudo`. Defaults to false except on Ubuntu where it defaults to true.
2844
2845 #### iostats <a id="plugin-contrib-command-iostats"></a>
2846
2847 The [check_iostats](https://github.com/dnsmichi/icinga-plugins/blob/master/scripts/check_iostats) plugin
2848 uses the `iostat` binary to monitor I/O on a Linux host. The default thresholds are rather high
2849 so you can use a grapher for baselining before setting your own.
2850
2851 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2852
2853 Name           | Description
2854 ---------------|-----------------------------------------------------------------------------------------------------------------------
2855 iostats\_disk            | **Required.** The device to monitor without path. e.g. sda or vda. (default: sda)
2856 iostats\_warning\_tps    | **Required.** Warning threshold for tps (default: 3000)
2857 iostats\_warning\_read   | **Required.** Warning threshold for KB/s reads (default: 50000)
2858 iostats\_warning\_write  | **Required.** Warning threshold for KB/s writes (default: 10000)
2859 iostats\_warning\_wait   | **Required.** Warning threshold for % iowait (default: 50)
2860 iostats\_critical\_tps   | **Required.** Critical threshold for tps (default: 5000)
2861 iostats\_critical\_read  | **Required.** Critical threshold for KB/s reads (default: 80000)
2862 iostats\_critical\_write | **Required.** Critical threshold for KB/s writes (default: 25000)
2863 iostats\_critical\_wait  | **Required.** Critical threshold for % iowait (default: 80)
2864
2865 #### iostat <a id="plugin-contrib-command-iostat"></a>
2866
2867 The [check_iostat](https://github.com/dnsmichi/icinga-plugins/blob/master/scripts/check_iostat) plugin
2868 uses the `iostat` binary to monitor disk I/O on a Linux host. The default thresholds are rather high
2869 so you can use a grapher for baselining before setting your own.
2870
2871 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2872
2873 Name           | Description
2874 ---------------|-----------------------------------------------------------------------------------------------------------------------
2875 iostat\_disk   | **Required.** The device to monitor without path. e.g. sda or vda. (default: sda)
2876 iostat\_wtps   | **Required.** Warning threshold for tps (default: 100)
2877 iostat\_wread  | **Required.** Warning threshold for KB/s reads (default: 100)
2878 iostat\_wwrite | **Required.** Warning threshold for KB/s writes (default: 100)
2879 iostat\_ctps   | **Required.** Critical threshold for tps (default: 200)
2880 iostat\_cread  | **Required.** Critical threshold for KB/s reads (default: 200)
2881 iostat\_cwrite | **Required.** Critical threshold for KB/s writes (default: 200)
2882
2883 #### yum <a id="plugin-contrib-command-yum"></a>
2884
2885 The [check_yum](https://github.com/calestyo/check_yum) plugin checks the YUM package
2886 management system for package updates.
2887 The plugin requires the `yum-plugin-security` package to differentiate between security and normal updates.
2888
2889 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2890
2891 Name                    | Description
2892 ------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2893 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.
2894 yum_warn_on_any_update  | **Optional.** Set to true to warn if there are any (non-security) package updates available. Defaults to false.
2895 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.
2896 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.
2897 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.
2898 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.
2899 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.
2900 yum_installroot         | **Optional.** Specifies another installation root directory (for example a chroot).
2901 yum_timeout             | **Optional.** Set a timeout in seconds after which the plugin will exit (defaults to 55 seconds).
2902
2903 ### Storage <a id="plugins-contrib-storage"></a>
2904
2905 This category includes all plugins for various storage and object storage technologies.
2906
2907 #### glusterfs <a id="plugins-contrib-command-glusterfs"></a>
2908
2909 The [glusterfs](https://www.unixadm.org/software/nagios-stuff/checks/check_glusterfs) plugin
2910 is used to check the GlusterFS storage health on the server.
2911 The plugin requires `sudo` permissions.
2912
2913 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2914
2915 Name                       | Description
2916 ---------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2917 glusterfs_perfdata         | **Optional.** Print perfdata of all or the specified volume.
2918 glusterfs_warnonfailedheal | **Optional.** Warn if the *heal-failed* log contains entries. The log can be cleared by restarting glusterd.
2919 glusterfs_volume           | **Optional.** Only check the specified *VOLUME*. If --volume is not set, all volumes are checked.
2920 glusterfs_disk_warning     | **Optional.** Warn if disk usage is above *DISKWARN*. Defaults to 90 (percent).
2921 glusterfs_disk_critical    | **Optional.** Return a critical error if disk usage is above *DISKCRIT*. Defaults to 95 (percent).
2922 glusterfs_inode_warning    | **Optional.** Warn if inode usage is above *DISKWARN*. Defaults to 90 (percent).
2923 glusterfs_inode_critical   | **Optional.** Return a critical error if inode usage is above *DISKCRIT*. Defaults to 95 (percent).
2924
2925
2926 ### Virtualization <a id="plugin-contrib-virtualization"></a>
2927
2928 This category includes all plugins for various virtualization technologies.
2929
2930 #### esxi_hardware <a id="plugin-contrib-command-esxi-hardware"></a>
2931
2932 The [check_esxi_hardware.py](https://www.claudiokuenzler.com/nagios-plugins/check_esxi_hardware.php) plugin
2933 uses the [pywbem](https://pywbem.github.io/pywbem/) Python library to monitor the hardware of ESXi servers
2934 through the [VMWare API](https://www.vmware.com/support/pubs/sdk_pubs.html) and CIM service.
2935
2936 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2937
2938 Name                    | Description
2939 ------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2940 esxi_hardware_host      | **Required.** Specifies the host to monitor. Defaults to "$address$".
2941 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.
2942 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.
2943 esxi_hardware_port      | **Optional.** Specifies the CIM port to connect to. Defaults to 5989.
2944 esxi_hardware_vendor    | **Optional.** Defines the vendor of the server: "auto", "dell", "hp", "ibm", "intel", "unknown" (default).
2945 esxi_hardware_html      | **Optional.** Add web-links to hardware manuals for Dell servers (use your country extension). Only useful with **esxi_hardware_vendor** = dell.
2946 esxi_hardware_ignore    | **Optional.** Comma separated list of elements to ignore.
2947 esxi_hardware_perfdata  | **Optional.** Add performcedata for graphers like PNP4Nagios to the output. Defaults to false.
2948 esxi_hardware_nopower   | **Optional.** Do not collect power performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2949 esxi_hardware_novolts   | **Optional.** Do not collect voltage performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2950 esxi_hardware_nocurrent | **Optional.** Do not collect current performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2951 esxi_hardware_notemp    | **Optional.** Do not collect temperature performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2952 esxi_hardware_nofan     | **Optional.** Do not collect fan performance data, when **esxi_hardware_perfdata** is set to true. Defaults to false.
2953 esxi_hardware_nolcd     | **Optional.** Do not collect lcd/display status data. Defaults to false.
2954
2955 #### VMware <a id="plugin-contrib-vmware"></a>
2956
2957 Check commands for the [check_vmware_esx](https://github.com/BaldMansMojo/check_vmware_esx) plugin.
2958
2959 **vmware-esx-dc-volumes**
2960
2961 Check command object for the `check_vmware_esx` plugin. Shows all datastore volumes info.
2962
2963 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2964
2965 Name                    | Description
2966 ------------------------|--------------
2967 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
2968 vmware_cluster          | **Optional.** ESX or ESXi clustername.
2969 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
2970 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".
2971 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".
2972 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
2973 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
2974 vmware_sessionfile      | **Optional.** Session file name enhancement.
2975 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
2976 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
2977 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
2978 vmware_password         | **Optional.** The username's password. No value defined as default.
2979 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
2980 vmware_subselect        | **Optional.** Volume name to be checked the free space.
2981 vmware_gigabyte         | **Optional.** Output in GB instead of MB.
2982 vmware_usedspace        | **Optional.** Output used space instead of free. Defaults to "false".
2983 vmware_alertonly        | **Optional.** List only alerting volumes. Defaults to "false".
2984 vmware_exclude          | **Optional.** Blacklist volumes name. No value defined as default.
2985 vmware_include          | **Optional.** Whitelist volumes name. No value defined as default.
2986 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
2987 vmware_dc_volume_used   | **Optional.** Output used space instead of free. Defaults to "true".
2988 vmware_warn             | **Optional.** The warning threshold for volumes. Defaults to "80%".
2989 vmware_crit             | **Optional.** The critical threshold for volumes. Defaults to "90%".
2990
2991
2992 **vmware-esx-dc-runtime-info**
2993
2994 Check command object for the `check_vmware_esx` plugin. Shows all runtime info for the datacenter/Vcenter.
2995
2996 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
2997
2998 Name                    | Description
2999 ------------------------|--------------
3000 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3001 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3002 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3003 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".
3004 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".
3005 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3006 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3007 vmware_sessionfile      | **Optional.** Session file name enhancement.
3008 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3009 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3010 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3011 vmware_password         | **Optional.** The username's password. No value defined as default.
3012 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
3013
3014
3015 **vmware-esx-dc-runtime-listvms**
3016
3017 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.
3018
3019 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3020
3021 Name                    | Description
3022 ------------------------|--------------
3023 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3024 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3025 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3026 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".
3027 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".
3028 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3029 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3030 vmware_sessionfile      | **Optional.** Session file name enhancement.
3031 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3032 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3033 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3034 vmware_password         | **Optional.** The username's password. No value defined as default.
3035 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
3036 vmware_alertonly        | **Optional.** List only alerting VMs. Important here to avoid masses of data.
3037 vmware_exclude          | **Optional.** Blacklist VMs name. No value defined as default.
3038 vmware_include          | **Optional.** Whitelist VMs name. No value defined as default.
3039 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3040 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.
3041
3042
3043 **vmware-esx-dc-runtime-listhost**
3044
3045 Check command object for the `check_vmware_esx` plugin. List of VMware ESX hosts and their power state.
3046
3047 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3048
3049 Name                    | Description
3050 ------------------------|--------------
3051 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3052 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3053 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3054 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".
3055 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".
3056 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3057 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3058 vmware_sessionfile      | **Optional.** Session file name enhancement.
3059 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3060 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3061 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3062 vmware_password         | **Optional.** The username's password. No value defined as default.
3063 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
3064 vmware_alertonly        | **Optional.** List only alerting hosts. Important here to avoid masses of data.
3065 vmware_exclude          | **Optional.** Blacklist VMware ESX hosts. No value defined as default.
3066 vmware_include          | **Optional.** Whitelist VMware ESX hosts. No value defined as default.
3067 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3068 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.
3069
3070
3071 **vmware-esx-dc-runtime-listcluster**
3072
3073 Check command object for the `check_vmware_esx` plugin. List of VMware clusters and their states.
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_alertonly        | **Optional.** List only alerting hosts. Important here to avoid masses of data.
3093 vmware_exclude          | **Optional.** Blacklist VMware cluster. No value defined as default.
3094 vmware_include          | **Optional.** Whitelist VMware cluster. No value defined as default.
3095 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3096 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.
3097
3098
3099 **vmware-esx-dc-runtime-issues**
3100
3101 Check command object for the `check_vmware_esx` plugin. All issues for the host.
3102
3103 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3104
3105 Name                    | Description
3106 ------------------------|--------------
3107 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3108 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3109 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3110 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".
3111 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".
3112 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3113 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3114 vmware_sessionfile      | **Optional.** Session file name enhancement.
3115 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3116 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3117 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3118 vmware_password         | **Optional.** The username's password. No value defined as default.
3119 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
3120 vmware_exclude          | **Optional.** Blacklist issues. No value defined as default.
3121 vmware_include          | **Optional.** Whitelist issues. No value defined as default.
3122 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3123 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.
3124
3125
3126 **vmware-esx-dc-runtime-status**
3127
3128 Check command object for the `check_vmware_esx` plugin. Overall object status (gray/green/red/yellow).
3129
3130 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3131
3132 Name                    | Description
3133 ------------------------|--------------
3134 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3135 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3136 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3137 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".
3138 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".
3139 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3140 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3141 vmware_sessionfile      | **Optional.** Session file name enhancement.
3142 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3143 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3144 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3145 vmware_password         | **Optional.** The username's password. No value defined as default.
3146 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
3147
3148
3149 **vmware-esx-dc-runtime-tools**
3150
3151 Check command object for the `check_vmware_esx` plugin. Vmware Tools status.
3152
3153 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3154
3155 Name                    | Description
3156 ------------------------|--------------
3157 vmware_datacenter       | **Required.** Datacenter/vCenter hostname.
3158 vmware_cluster          | **Optional.** ESX or ESXi clustername.
3159 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3160 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".
3161 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".
3162 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3163 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3164 vmware_sessionfile      | **Optional.** Session file name enhancement.
3165 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3166 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3167 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3168 vmware_password         | **Optional.** The username's password. No value defined as default.
3169 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
3170 vmware_poweredonly      | **Optional.** List only VMs which are powered on. No value defined as default.
3171 vmware_alertonly        | **Optional.** List only alerting VMs. Important here to avoid masses of data.
3172 vmware_exclude          | **Optional.** Blacklist VMs. No value defined as default.
3173 vmware_include          | **Optional.** Whitelist VMs. No value defined as default.
3174 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3175 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.
3176 vmware_openvmtools      | **Optional** Prevent CRITICAL state for installed and running Open VM Tools.
3177
3178
3179 **vmware-esx-soap-host-check**
3180
3181 Check command object for the `check_vmware_esx` plugin. Simple check to verify a successfull connection to VMware SOAP API.
3182
3183 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3184
3185 Name                    | Description
3186 ------------------------|--------------
3187 vmware_host             | **Required.** ESX or ESXi hostname.
3188 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3189 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3190 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".
3191 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".
3192 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3193 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3194 vmware_sessionfile      | **Optional.** Session file name enhancement.
3195 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3196 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3197 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3198 vmware_password         | **Optional.** The username's password. No value defined as default.
3199 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
3200
3201
3202 **vmware-esx-soap-host-uptime**
3203
3204 Check command object for the `check_vmware_esx` plugin. Displays uptime of the VMware host.
3205
3206 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3207
3208 Name                    | Description
3209 ------------------------|--------------
3210 vmware_host             | **Required.** ESX or ESXi hostname.
3211 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3212 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3213 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".
3214 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".
3215 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3216 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3217 vmware_sessionfile      | **Optional.** Session file name enhancement.
3218 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3219 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3220 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3221 vmware_password         | **Optional.** The username's password. No value defined as default.
3222 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
3223
3224
3225 **vmware-esx-soap-host-cpu**
3226
3227 Check command object for the `check_vmware_esx` plugin. CPU usage in percentage.
3228
3229 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3230
3231 Name                    | Description
3232 ------------------------|--------------
3233 vmware_host             | **Required.** ESX or ESXi hostname.
3234 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3235 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3236 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".
3237 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".
3238 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3239 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3240 vmware_sessionfile      | **Optional.** Session file name enhancement.
3241 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3242 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3243 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3244 vmware_password         | **Optional.** The username's password. No value defined as default.
3245 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
3246 vmware_warn             | **Optional.** The warning threshold in percent. Defaults to "80%".
3247 vmware_crit             | **Optional.** The critical threshold in percent. Defaults to "90%".
3248
3249
3250 **vmware-esx-soap-host-cpu-ready**
3251
3252 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.
3253
3254 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3255
3256 Name                    | Description
3257 ------------------------|--------------
3258 vmware_host             | **Required.** ESX or ESXi hostname.
3259 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3260 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3261 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".
3262 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".
3263 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3264 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3265 vmware_sessionfile      | **Optional.** Session file name enhancement.
3266 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3267 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3268 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3269 vmware_password         | **Optional.** The username's password. No value defined as default.
3270 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
3271
3272
3273 **vmware-esx-soap-host-cpu-wait**
3274
3275 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.
3276
3277 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3278
3279 Name                    | Description
3280 ------------------------|--------------
3281 vmware_host             | **Required.** ESX or ESXi hostname.
3282 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3283 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3284 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".
3285 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".
3286 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3287 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3288 vmware_sessionfile      | **Optional.** Session file name enhancement.
3289 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3290 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3291 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3292 vmware_password         | **Optional.** The username's password. No value defined as default.
3293 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
3294
3295
3296 **vmware-esx-soap-host-cpu-usage**
3297
3298 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.
3299
3300 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3301
3302 Name                    | Description
3303 ------------------------|--------------
3304 vmware_host             | **Required.** ESX or ESXi hostname.
3305 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3306 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3307 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".
3308 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".
3309 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3310 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3311 vmware_sessionfile      | **Optional.** Session file name enhancement.
3312 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3313 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3314 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3315 vmware_password         | **Optional.** The username's password. No value defined as default.
3316 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
3317 vmware_warn             | **Optional.** The warning threshold in percent. Defaults to "80%".
3318 vmware_crit             | **Optional.** The critical threshold in percent. Defaults to "90%".
3319
3320
3321 **vmware-esx-soap-host-mem**
3322
3323 Check command object for the `check_vmware_esx` plugin. All mem info(except overall and no thresholds).
3324
3325 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3326
3327 Name                    | Description
3328 ------------------------|--------------
3329 vmware_host             | **Required.** ESX or ESXi hostname.
3330 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3331 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3332 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".
3333 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".
3334 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3335 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3336 vmware_sessionfile      | **Optional.** Session file name enhancement.
3337 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3338 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3339 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3340 vmware_password         | **Optional.** The username's password. No value defined as default.
3341 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
3342
3343
3344 **vmware-esx-soap-host-mem-usage**
3345
3346 Check command object for the `check_vmware_esx` plugin. Average mem usage in percentage.
3347
3348 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3349
3350 Name                    | Description
3351 ------------------------|--------------
3352 vmware_host             | **Required.** ESX or ESXi hostname.
3353 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3354 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3355 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".
3356 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".
3357 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3358 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3359 vmware_sessionfile      | **Optional.** Session file name enhancement.
3360 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3361 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3362 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3363 vmware_password         | **Optional.** The username's password. No value defined as default.
3364 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
3365 vmware_warn             | **Optional.** The warning threshold in percent. Defaults to "80%".
3366 vmware_crit             | **Optional.** The critical threshold in percent. Defaults to "90%".
3367
3368
3369 **vmware-esx-soap-host-mem-consumed**
3370
3371 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.
3372
3373 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3374
3375 Name                    | Description
3376 ------------------------|--------------
3377 vmware_host             | **Required.** ESX or ESXi hostname.
3378 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3379 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3380 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".
3381 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".
3382 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3383 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3384 vmware_sessionfile      | **Optional.** Session file name enhancement.
3385 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3386 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3387 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3388 vmware_password         | **Optional.** The username's password. No value defined as default.
3389 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
3390 vmware_warn             | **Optional.** The warning threshold in percent. No value defined as default.
3391 vmware_crit             | **Optional.** The critical threshold in percent. No value defined as default.
3392
3393
3394 **vmware-esx-soap-host-mem-swapused**
3395
3396 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.
3397
3398 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3399
3400 Name                    | Description
3401 ------------------------|--------------
3402 vmware_host             | **Required.** ESX or ESXi hostname.
3403 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3404 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3405 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".
3406 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".
3407 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3408 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3409 vmware_sessionfile      | **Optional.** Session file name enhancement.
3410 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3411 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3412 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3413 vmware_password         | **Optional.** The username's password. No value defined as default.
3414 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
3415 vmware_warn             | **Optional.** The warning threshold in percent. No value defined as default.
3416 vmware_crit             | **Optional.** The critical threshold in percent. No value defined as default.
3417 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.
3418
3419
3420 **vmware-esx-soap-host-mem-overhead**
3421
3422 Check command object for the `check_vmware_esx` plugin. Additional mem used by VM Server in MB.
3423
3424 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3425
3426 Name                    | Description
3427 ------------------------|--------------
3428 vmware_host             | **Required.** ESX or ESXi hostname.
3429 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3430 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3431 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".
3432 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".
3433 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3434 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3435 vmware_sessionfile      | **Optional.** Session file name enhancement.
3436 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3437 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3438 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3439 vmware_password         | **Optional.** The username's password. No value defined as default.
3440 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
3441 vmware_warn             | **Optional.** The warning threshold in percent. No value defined as default.
3442 vmware_crit             | **Optional.** The critical threshold in percent. No value defined as default.
3443
3444
3445 **vmware-esx-soap-host-mem-memctl**
3446
3447 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.
3448
3449 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3450
3451 Name                    | Description
3452 ------------------------|--------------
3453 vmware_host             | **Required.** ESX or ESXi hostname.
3454 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3455 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3456 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".
3457 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".
3458 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3459 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3460 vmware_sessionfile      | **Optional.** Session file name enhancement.
3461 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3462 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3463 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3464 vmware_password         | **Optional.** The username's password. No value defined as default.
3465 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
3466 vmware_warn             | **Optional.** The warning threshold in percent. No value defined as default.
3467 vmware_crit             | **Optional.** The critical threshold in percent. No value defined as default.
3468 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.
3469
3470
3471 **vmware-esx-soap-host-net**
3472
3473 Check command object for the `check_vmware_esx` plugin. Shows net info.
3474
3475 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3476
3477 Name                    | Description
3478 ------------------------|--------------
3479 vmware_host             | **Required.** ESX or ESXi hostname.
3480 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3481 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3482 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".
3483 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".
3484 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3485 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3486 vmware_sessionfile      | **Optional.** Session file name enhancement.
3487 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3488 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3489 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3490 vmware_password         | **Optional.** The username's password. No value defined as default.
3491 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
3492 vmware_exclude          | **Optional.** Blacklist NICs. No value defined as default.
3493 vmware_isregexp         | **Optional.** Treat blacklist expression as regexp.
3494
3495
3496 **vmware-esx-soap-host-net-usage**
3497
3498 Check command object for the `check_vmware_esx` plugin. Overall network usage in KBps(Kilobytes per Second).
3499
3500 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3501
3502 Name                    | Description
3503 ------------------------|--------------
3504 vmware_host             | **Required.** ESX or ESXi hostname.
3505 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3506 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3507 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".
3508 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".
3509 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3510 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3511 vmware_sessionfile      | **Optional.** Session file name enhancement.
3512 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3513 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3514 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3515 vmware_password         | **Optional.** The username's password. No value defined as default.
3516 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
3517 vmware_warn             | **Optional.** The warning threshold in KBps(Kilobytes per Second). No value defined as default.
3518 vmware_crit             | **Optional.** The critical threshold in KBps(Kilobytes per Second). No value defined as default.
3519
3520
3521 **vmware-esx-soap-host-net-receive**
3522
3523 Check command object for the `check_vmware_esx` plugin. Data receive in KBps(Kilobytes per Second).
3524
3525 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3526
3527 Name                    | Description
3528 ------------------------|--------------
3529 vmware_host             | **Required.** ESX or ESXi hostname.
3530 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3531 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3532 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".
3533 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".
3534 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3535 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3536 vmware_sessionfile      | **Optional.** Session file name enhancement.
3537 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3538 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3539 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3540 vmware_password         | **Optional.** The username's password. No value defined as default.
3541 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
3542 vmware_warn             | **Optional.** The warning threshold in KBps(Kilobytes per Second). No value defined as default.
3543 vmware_crit             | **Optional.** The critical threshold in KBps(Kilobytes per Second). No value defined as default.
3544
3545
3546 **vmware-esx-soap-host-net-send**
3547
3548 Check command object for the `check_vmware_esx` plugin. Data send in KBps(Kilobytes per Second).
3549
3550 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3551
3552 Name                    | Description
3553 ------------------------|--------------
3554 vmware_host             | **Required.** ESX or ESXi hostname.
3555 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3556 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3557 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".
3558 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".
3559 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3560 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3561 vmware_sessionfile      | **Optional.** Session file name enhancement.
3562 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3563 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3564 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3565 vmware_password         | **Optional.** The username's password. No value defined as default.
3566 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
3567 vmware_warn             | **Optional.** The warning threshold in KBps(Kilobytes per Second). No value defined as default.
3568 vmware_crit             | **Optional.** The critical threshold in KBps(Kilobytes per Second). No value defined as default.
3569
3570
3571 **vmware-esx-soap-host-net-nic**
3572
3573 Check command object for the `check_vmware_esx` plugin. Check all active NICs.
3574
3575 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3576
3577 Name                    | Description
3578 ------------------------|--------------
3579 vmware_host             | **Required.** ESX or ESXi hostname.
3580 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3581 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3582 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".
3583 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".
3584 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3585 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3586 vmware_sessionfile      | **Optional.** Session file name enhancement.
3587 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3588 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3589 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3590 vmware_password         | **Optional.** The username's password. No value defined as default.
3591 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
3592 vmware_exclude          | **Optional.** Blacklist NICs. No value defined as default.
3593 vmware_isregexp         | **Optional.** Treat blacklist expression as regexp.
3594
3595
3596 **vmware-esx-soap-host-volumes**
3597
3598 Check command object for the `check_vmware_esx` plugin. Shows all datastore volumes info.
3599
3600 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3601
3602 Name                    | Description
3603 ------------------------|--------------
3604 vmware_host             | **Required.** ESX or ESXi hostname.
3605 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3606 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3607 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".
3608 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".
3609 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3610 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3611 vmware_sessionfile      | **Optional.** Session file name enhancement.
3612 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3613 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3614 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3615 vmware_password         | **Optional.** The username's password. No value defined as default.
3616 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
3617 vmware_subselect        | **Optional.** Volume name to be checked the free space.
3618 vmware_gigabyte         | **Optional.** Output in GB instead of MB.
3619 vmware_usedspace        | **Optional.** Output used space instead of free. Defaults to "false".
3620 vmware_alertonly        | **Optional.** List only alerting volumes. Defaults to "false".
3621 vmware_exclude          | **Optional.** Blacklist volumes name. No value defined as default.
3622 vmware_include          | **Optional.** Whitelist volumes name. No value defined as default.
3623 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3624 vmware_warn             | **Optional.** The warning threshold for volumes. Defaults to "80%".
3625 vmware_crit             | **Optional.** The critical threshold for volumes. Defaults to "90%".
3626 vmware_spaceleft        | **Optional.** This has to be used in conjunction with thresholds as mentioned above.
3627
3628
3629 **vmware-esx-soap-host-io**
3630
3631 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.
3632
3633 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3634
3635 Name                    | Description
3636 ------------------------|--------------
3637 vmware_host             | **Required.** ESX or ESXi hostname.
3638 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3639 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3640 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".
3641 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".
3642 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3643 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3644 vmware_sessionfile      | **Optional.** Session file name enhancement.
3645 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3646 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3647 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3648 vmware_password         | **Optional.** The username's password. No value defined as default.
3649 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
3650
3651
3652 **vmware-esx-soap-host-io-aborted**
3653
3654 Check command object for the `check_vmware_esx` plugin. Number of aborted SCSI commands.
3655
3656 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3657
3658 Name                    | Description
3659 ------------------------|--------------
3660 vmware_host             | **Required.** ESX or ESXi hostname.
3661 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3662 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3663 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".
3664 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".
3665 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3666 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3667 vmware_sessionfile      | **Optional.** Session file name enhancement.
3668 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3669 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3670 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3671 vmware_password         | **Optional.** The username's password. No value defined as default.
3672 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
3673 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3674 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3675
3676
3677 **vmware-esx-soap-host-io-resets**
3678
3679 Check command object for the `check_vmware_esx` plugin. Number of SCSI bus resets.
3680
3681 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3682
3683 Name                    | Description
3684 ------------------------|--------------
3685 vmware_host             | **Required.** ESX or ESXi hostname.
3686 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3687 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3688 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".
3689 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".
3690 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3691 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3692 vmware_sessionfile      | **Optional.** Session file name enhancement.
3693 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3694 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3695 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3696 vmware_password         | **Optional.** The username's password. No value defined as default.
3697 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
3698 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3699 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3700
3701
3702 **vmware-esx-soap-host-io-read**
3703
3704 Check command object for the `check_vmware_esx` plugin. Average number of kilobytes read from the disk each second.
3705
3706 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3707
3708 Name                    | Description
3709 ------------------------|--------------
3710 vmware_host             | **Required.** ESX or ESXi hostname.
3711 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3712 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3713 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".
3714 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".
3715 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3716 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3717 vmware_sessionfile      | **Optional.** Session file name enhancement.
3718 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3719 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3720 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3721 vmware_password         | **Optional.** The username's password. No value defined as default.
3722 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
3723 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3724 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3725
3726
3727 **vmware-esx-soap-host-io-read-latency**
3728
3729 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.
3730
3731 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3732
3733 Name                    | Description
3734 ------------------------|--------------
3735 vmware_host             | **Required.** ESX or ESXi hostname.
3736 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3737 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3738 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".
3739 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".
3740 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3741 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3742 vmware_sessionfile      | **Optional.** Session file name enhancement.
3743 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3744 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3745 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3746 vmware_password         | **Optional.** The username's password. No value defined as default.
3747 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
3748 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3749 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3750
3751
3752 **vmware-esx-soap-host-io-write**
3753
3754 Check command object for the `check_vmware_esx` plugin. Average number of kilobytes written to disk each second.
3755
3756 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3757
3758 Name                    | Description
3759 ------------------------|--------------
3760 vmware_host             | **Required.** ESX or ESXi hostname.
3761 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3762 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3763 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".
3764 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".
3765 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3766 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3767 vmware_sessionfile      | **Optional.** Session file name enhancement.
3768 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3769 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3770 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3771 vmware_password         | **Optional.** The username's password. No value defined as default.
3772 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
3773 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3774 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3775
3776
3777 **vmware-esx-soap-host-io-write-latency**
3778
3779 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.
3780
3781 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3782
3783 Name                    | Description
3784 ------------------------|--------------
3785 vmware_host             | **Required.** ESX or ESXi hostname.
3786 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3787 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3788 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".
3789 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".
3790 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3791 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3792 vmware_sessionfile      | **Optional.** Session file name enhancement.
3793 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3794 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3795 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3796 vmware_password         | **Optional.** The username's password. No value defined as default.
3797 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
3798 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3799 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3800
3801
3802 **vmware-esx-soap-host-io-usage**
3803
3804 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.
3805
3806 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3807
3808 Name                    | Description
3809 ------------------------|--------------
3810 vmware_host             | **Required.** ESX or ESXi hostname.
3811 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3812 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3813 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".
3814 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".
3815 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3816 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3817 vmware_sessionfile      | **Optional.** Session file name enhancement.
3818 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3819 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3820 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3821 vmware_password         | **Optional.** The username's password. No value defined as default.
3822 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
3823 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3824 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3825
3826
3827 **vmware-esx-soap-host-io-kernel-latency**
3828
3829 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) spent by VMkernel processing each SCSI command.
3830
3831 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3832
3833 Name                    | Description
3834 ------------------------|--------------
3835 vmware_host             | **Required.** ESX or ESXi hostname.
3836 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3837 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3838 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".
3839 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".
3840 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3841 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3842 vmware_sessionfile      | **Optional.** Session file name enhancement.
3843 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3844 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3845 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3846 vmware_password         | **Optional.** The username's password. No value defined as default.
3847 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
3848 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3849 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3850
3851
3852 **vmware-esx-soap-host-io-device-latency**
3853
3854 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) to complete a SCSI command from the physical device.
3855
3856 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3857
3858 Name                    | Description
3859 ------------------------|--------------
3860 vmware_host             | **Required.** ESX or ESXi hostname.
3861 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3862 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3863 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".
3864 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".
3865 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3866 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3867 vmware_sessionfile      | **Optional.** Session file name enhancement.
3868 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3869 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3870 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3871 vmware_password         | **Optional.** The username's password. No value defined as default.
3872 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
3873 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3874 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3875
3876
3877 **vmware-esx-soap-host-io-queue-latency**
3878
3879 Check command object for the `check_vmware_esx` plugin. Average amount of time (ms) spent in the VMkernel queue.
3880
3881 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3882
3883 Name                    | Description
3884 ------------------------|--------------
3885 vmware_host             | **Required.** ESX or ESXi hostname.
3886 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3887 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3888 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".
3889 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".
3890 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3891 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3892 vmware_sessionfile      | **Optional.** Session file name enhancement.
3893 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3894 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3895 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3896 vmware_password         | **Optional.** The username's password. No value defined as default.
3897 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
3898 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3899 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3900
3901
3902 **vmware-esx-soap-host-io-total-latency**
3903
3904 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.
3905
3906 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3907
3908 Name                    | Description
3909 ------------------------|--------------
3910 vmware_host             | **Required.** ESX or ESXi hostname.
3911 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3912 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3913 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".
3914 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".
3915 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3916 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3917 vmware_sessionfile      | **Optional.** Session file name enhancement.
3918 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3919 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3920 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3921 vmware_password         | **Optional.** The username's password. No value defined as default.
3922 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
3923 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
3924 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
3925
3926
3927 **vmware-esx-soap-host-media**
3928
3929 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.
3930
3931 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3932
3933 Name                    | Description
3934 ------------------------|--------------
3935 vmware_host             | **Required.** ESX or ESXi hostname.
3936 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3937 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3938 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".
3939 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".
3940 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3941 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3942 vmware_sessionfile      | **Optional.** Session file name enhancement.
3943 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3944 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3945 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3946 vmware_password         | **Optional.** The username's password. No value defined as default.
3947 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
3948 vmware_exclude          | **Optional.** Blacklist VMs name. No value defined as default.
3949 vmware_include          | **Optional.** Whitelist VMs name. No value defined as default.
3950 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3951 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.
3952
3953
3954 **vmware-esx-soap-host-service**
3955
3956 Check command object for the `check_vmware_esx` plugin. Shows host service info.
3957
3958 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3959
3960 Name                    | Description
3961 ------------------------|--------------
3962 vmware_host             | **Required.** ESX or ESXi hostname.
3963 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3964 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3965 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".
3966 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".
3967 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3968 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3969 vmware_sessionfile      | **Optional.** Session file name enhancement.
3970 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3971 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3972 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
3973 vmware_password         | **Optional.** The username's password. No value defined as default.
3974 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
3975 vmware_exclude          | **Optional.** Blacklist services name. No value defined as default.
3976 vmware_include          | **Optional.** Whitelist services name. No value defined as default.
3977 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
3978 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.
3979
3980
3981 **vmware-esx-soap-host-runtime**
3982
3983 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.
3984
3985 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
3986
3987 Name                    | Description
3988 ------------------------|--------------
3989 vmware_host             | **Required.** ESX or ESXi hostname.
3990 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
3991 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
3992 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".
3993 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".
3994 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
3995 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
3996 vmware_sessionfile      | **Optional.** Session file name enhancement.
3997 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
3998 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
3999 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4000 vmware_password         | **Optional.** The username's password. No value defined as default.
4001 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
4002
4003
4004 **vmware-esx-soap-host-runtime-con**
4005
4006 Check command object for the `check_vmware_esx` plugin. Shows connection state.
4007
4008 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4009
4010 Name                    | Description
4011 ------------------------|--------------
4012 vmware_host             | **Required.** ESX or ESXi hostname.
4013 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4014 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4015 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".
4016 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".
4017 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4018 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4019 vmware_sessionfile      | **Optional.** Session file name enhancement.
4020 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4021 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4022 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4023 vmware_password         | **Optional.** The username's password. No value defined as default.
4024 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
4025
4026
4027 **vmware-esx-soap-host-runtime-listvms**
4028
4029 Check command object for the `check_vmware_esx` plugin. List of VMware machines and their status.
4030
4031 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4032
4033 Name                    | Description
4034 ------------------------|--------------
4035 vmware_host             | **Required.** ESX or ESXi hostname.
4036 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4037 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4038 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".
4039 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".
4040 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4041 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4042 vmware_sessionfile      | **Optional.** Session file name enhancement.
4043 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4044 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4045 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4046 vmware_password         | **Optional.** The username's password. No value defined as default.
4047 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
4048 vmware_exclude          | **Optional.** Blacklist VMs name. No value defined as default.
4049 vmware_include          | **Optional.** Whitelist VMs name. No value defined as default.
4050 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4051 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.
4052
4053
4054 **vmware-esx-soap-host-runtime-status**
4055
4056 Check command object for the `check_vmware_esx` plugin. Overall object status (gray/green/red/yellow).
4057
4058 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4059
4060 Name                    | Description
4061 ------------------------|--------------
4062 vmware_host             | **Required.** ESX or ESXi hostname.
4063 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4064 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4065 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".
4066 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".
4067 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4068 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4069 vmware_sessionfile      | **Optional.** Session file name enhancement.
4070 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4071 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4072 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4073 vmware_password         | **Optional.** The username's password. No value defined as default.
4074 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
4075
4076
4077 **vmware-esx-soap-host-runtime-health**
4078
4079 Check command object for the `check_vmware_esx` plugin. Checks cpu/storage/memory/sensor status.
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 status name. No value defined as default.
4099 vmware_include          | **Optional.** Whitelist status name. No value defined as default.
4100 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4101
4102
4103 **vmware-esx-soap-host-runtime-health-listsensors**
4104
4105 Check command object for the `check_vmware_esx` plugin. List all available sensors(use for listing purpose only).
4106
4107 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4108
4109 Name                    | Description
4110 ------------------------|--------------
4111 vmware_host             | **Required.** ESX or ESXi hostname.
4112 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4113 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4114 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".
4115 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".
4116 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4117 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4118 vmware_sessionfile      | **Optional.** Session file name enhancement.
4119 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4120 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4121 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4122 vmware_password         | **Optional.** The username's password. No value defined as default.
4123 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
4124 vmware_exclude          | **Optional.** Blacklist status name. No value defined as default.
4125 vmware_include          | **Optional.** Whitelist status name. No value defined as default.
4126 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4127
4128
4129 **vmware-esx-soap-host-runtime-health-nostoragestatus**
4130
4131 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**.
4132
4133 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4134
4135 Name                    | Description
4136 ------------------------|--------------
4137 vmware_host             | **Required.** ESX or ESXi hostname.
4138 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4139 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4140 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".
4141 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".
4142 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4143 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4144 vmware_sessionfile      | **Optional.** Session file name enhancement.
4145 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4146 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4147 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4148 vmware_password         | **Optional.** The username's password. No value defined as default.
4149 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
4150 vmware_exclude          | **Optional.** Blacklist status name. No value defined as default.
4151 vmware_include          | **Optional.** Whitelist status name. No value defined as default.
4152 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4153
4154
4155 **vmware-esx-soap-host-runtime-storagehealth**
4156
4157 Check command object for the `check_vmware_esx` plugin. Local storage status check.
4158
4159 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4160
4161 Name                    | Description
4162 ------------------------|--------------
4163 vmware_host             | **Required.** ESX or ESXi hostname.
4164 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4165 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4166 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".
4167 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".
4168 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4169 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4170 vmware_sessionfile      | **Optional.** Session file name enhancement.
4171 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4172 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4173 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4174 vmware_password         | **Optional.** The username's password. No value defined as default.
4175 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
4176 vmware_exclude          | **Optional.** Blacklist storage name. No value defined as default.
4177 vmware_include          | **Optional.** Whitelist storage name. No value defined as default.
4178 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4179 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.
4180
4181
4182 **vmware-esx-soap-host-runtime-temp**
4183
4184 Check command object for the `check_vmware_esx` plugin. Lists all temperature sensors.
4185
4186 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4187
4188 Name                    | Description
4189 ------------------------|--------------
4190 vmware_host             | **Required.** ESX or ESXi hostname.
4191 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4192 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4193 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".
4194 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".
4195 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4196 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4197 vmware_sessionfile      | **Optional.** Session file name enhancement.
4198 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4199 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4200 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4201 vmware_password         | **Optional.** The username's password. No value defined as default.
4202 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
4203 vmware_exclude          | **Optional.** Blacklist sensor name. No value defined as default.
4204 vmware_include          | **Optional.** Whitelist sensor name. No value defined as default.
4205 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4206 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.
4207
4208
4209 **vmware-esx-soap-host-runtime-issues**
4210
4211 Check command object for the `check_vmware_esx` plugin. Lists all configuration issues for the host.
4212
4213 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4214
4215 Name                    | Description
4216 ------------------------|--------------
4217 vmware_host             | **Required.** ESX or ESXi hostname.
4218 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4219 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4220 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".
4221 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".
4222 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4223 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4224 vmware_sessionfile      | **Optional.** Session file name enhancement.
4225 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4226 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4227 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4228 vmware_password         | **Optional.** The username's password. No value defined as default.
4229 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
4230 vmware_exclude          | **Optional.** Blacklist configuration issues. No value defined as default.
4231 vmware_include          | **Optional.** Whitelist configuration issues. No value defined as default.
4232 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4233 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.
4234
4235
4236 **vmware-esx-soap-host-storage**
4237
4238 Check command object for the `check_vmware_esx` plugin. Shows Host storage info.
4239
4240 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4241
4242 Name                    | Description
4243 ------------------------|--------------
4244 vmware_host             | **Required.** ESX or ESXi hostname.
4245 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4246 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4247 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".
4248 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".
4249 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4250 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4251 vmware_sessionfile      | **Optional.** Session file name enhancement.
4252 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4253 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4254 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4255 vmware_password         | **Optional.** The username's password. No value defined as default.
4256 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
4257 vmware_exclude          | **Optional.** Blacklist adapters, luns and paths. No value defined as default.
4258 vmware_include          | **Optional.** Whitelist adapters, luns and paths. No value defined as default.
4259 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4260
4261
4262 **vmware-esx-soap-host-storage-adapter**
4263
4264 Check command object for the `check_vmware_esx` plugin. List host bus adapters.
4265
4266 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4267
4268 Name                    | Description
4269 ------------------------|--------------
4270 vmware_host             | **Required.** ESX or ESXi hostname.
4271 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4272 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4273 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".
4274 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".
4275 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4276 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4277 vmware_sessionfile      | **Optional.** Session file name enhancement.
4278 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4279 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4280 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4281 vmware_password         | **Optional.** The username's password. No value defined as default.
4282 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
4283 vmware_exclude          | **Optional.** Blacklist adapters. No value defined as default.
4284 vmware_include          | **Optional.** Whitelist adapters. No value defined as default.
4285 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4286 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.
4287
4288
4289 **vmware-esx-soap-host-storage-lun**
4290
4291 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.
4292
4293 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4294
4295 Name                    | Description
4296 ------------------------|--------------
4297 vmware_host             | **Required.** ESX or ESXi hostname.
4298 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4299 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4300 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".
4301 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".
4302 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4303 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4304 vmware_sessionfile      | **Optional.** Session file name enhancement.
4305 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4306 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4307 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4308 vmware_password         | **Optional.** The username's password. No value defined as default.
4309 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
4310 vmware_exclude          | **Optional.** Blacklist luns. No value defined as default.
4311 vmware_include          | **Optional.** Whitelist luns. No value defined as default.
4312 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4313 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.
4314
4315
4316 **vmware-esx-soap-host-storage-path**
4317
4318 Check command object for the `check_vmware_esx` plugin. List multipaths and the associated paths.
4319
4320 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4321
4322 Name                    | Description
4323 ------------------------|--------------
4324 vmware_host             | **Required.** ESX or ESXi hostname.
4325 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. In case the check is done through a Datacenter/vCenter host.
4326 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4327 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".
4328 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".
4329 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4330 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4331 vmware_sessionfile      | **Optional.** Session file name enhancement.
4332 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4333 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4334 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4335 vmware_password         | **Optional.** The username's password. No value defined as default.
4336 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
4337 vmware_alertonly        | **Optional.** List only alerting units. Important here to avoid masses of data. Defaults to "false".
4338 vmware_exclude          | **Optional.** Blacklist paths. No value defined as default.
4339 vmware_include          | **Optional.** Whitelist paths. No value defined as default.
4340 vmware_isregexp         | **Optional.** Treat blacklist and whitelist expressions as regexp.
4341 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.
4342 vmware_standbyok        | **Optional.** For storage systems where a standby multipath is ok and not a warning. Defaults to false.
4343
4344
4345 **vmware-esx-soap-vm-cpu**
4346
4347 Check command object for the `check_vmware_esx` plugin. Shows all CPU usage info.
4348
4349 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4350
4351 Name                    | Description
4352 ------------------------|--------------
4353 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4354 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4355 vmware_vmname           | **Required.** Virtual machine name.
4356 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4357 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".
4358 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".
4359 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4360 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4361 vmware_sessionfile      | **Optional.** Session file name enhancement.
4362 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4363 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4364 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4365 vmware_password         | **Optional.** The username's password. No value defined as default.
4366 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
4367
4368
4369
4370 **vmware-esx-soap-vm-cpu-ready**
4371
4372 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.
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 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4393 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4394
4395
4396 **vmware-esx-soap-vm-cpu-wait**
4397
4398 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.
4399
4400 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4401
4402 Name                    | Description
4403 ------------------------|--------------
4404 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4405 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4406 vmware_vmname           | **Required.** Virtual machine name.
4407 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4408 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".
4409 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".
4410 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4411 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4412 vmware_sessionfile      | **Optional.** Session file name enhancement.
4413 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4414 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4415 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4416 vmware_password         | **Optional.** The username's password. No value defined as default.
4417 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
4418 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4419 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4420
4421
4422 **vmware-esx-soap-vm-cpu-usage**
4423
4424 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.
4425
4426 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4427
4428 Name                    | Description
4429 ------------------------|--------------
4430 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4431 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4432 vmware_vmname           | **Required.** Virtual machine name.
4433 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4434 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".
4435 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".
4436 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4437 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4438 vmware_sessionfile      | **Optional.** Session file name enhancement.
4439 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4440 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4441 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4442 vmware_password         | **Optional.** The username's password. No value defined as default.
4443 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
4444 vmware_warn             | **Optional.** Warning threshold in percent. Defaults to "80%".
4445 vmware_crit             | **Optional.** Critical threshold in percent. Defaults to "90%".
4446
4447
4448 **vmware-esx-soap-vm-mem**
4449
4450 Check command object for the `check_vmware_esx` plugin. Shows all memory info, except overall.
4451
4452 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4453
4454 Name                    | Description
4455 ------------------------|--------------
4456 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4457 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4458 vmware_vmname           | **Required.** Virtual machine name.
4459 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4460 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".
4461 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".
4462 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4463 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4464 vmware_sessionfile      | **Optional.** Session file name enhancement.
4465 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4466 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4467 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4468 vmware_password         | **Optional.** The username's password. No value defined as default.
4469 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
4470
4471
4472 **vmware-esx-soap-vm-mem-usage**
4473
4474 Check command object for the `check_vmware_esx` plugin. Average mem usage in percentage of configured virtual machine "physical" memory.
4475
4476 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4477
4478 Name                    | Description
4479 ------------------------|--------------
4480 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4481 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4482 vmware_vmname           | **Required.** Virtual machine name.
4483 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4484 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".
4485 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".
4486 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4487 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4488 vmware_sessionfile      | **Optional.** Session file name enhancement.
4489 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4490 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4491 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4492 vmware_password         | **Optional.** The username's password. No value defined as default.
4493 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
4494 vmware_warn             | **Optional.** Warning threshold in percent. Defaults to "80%".
4495 vmware_crit             | **Optional.** Critical threshold in percent. Defaults to "90%".
4496
4497
4498 **vmware-esx-soap-vm-mem-consumed**
4499
4500 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>
4501 **vm consumed memory = memory granted -- memory saved**
4502
4503 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4504
4505 Name                    | Description
4506 ------------------------|--------------
4507 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4508 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4509 vmware_vmname           | **Required.** Virtual machine name.
4510 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4511 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".
4512 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".
4513 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4514 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4515 vmware_sessionfile      | **Optional.** Session file name enhancement.
4516 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4517 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4518 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4519 vmware_password         | **Optional.** The username's password. No value defined as default.
4520 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
4521 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4522 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4523
4524
4525 **vmware-esx-soap-vm-mem-memctl**
4526
4527 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.
4528
4529 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4530
4531 Name                    | Description
4532 ------------------------|--------------
4533 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4534 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4535 vmware_vmname           | **Required.** Virtual machine name.
4536 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4537 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".
4538 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".
4539 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4540 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4541 vmware_sessionfile      | **Optional.** Session file name enhancement.
4542 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4543 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4544 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4545 vmware_password         | **Optional.** The username's password. No value defined as default.
4546 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
4547 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4548 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4549
4550
4551
4552 **vmware-esx-soap-vm-net**
4553
4554 Check command object for the `check_vmware_esx` plugin. Shows net info.
4555
4556 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4557
4558 Name                    | Description
4559 ------------------------|--------------
4560 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4561 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4562 vmware_vmname           | **Required.** Virtual machine name.
4563 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4564 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".
4565 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".
4566 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4567 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4568 vmware_sessionfile      | **Optional.** Session file name enhancement.
4569 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4570 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4571 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4572 vmware_password         | **Optional.** The username's password. No value defined as default.
4573 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
4574
4575
4576 **vmware-esx-soap-vm-net-usage**
4577
4578 Check command object for the `check_vmware_esx` plugin. Overall network usage in KBps(Kilobytes per Second).
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 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4599 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4600
4601
4602 **vmware-esx-soap-vm-net-receive**
4603
4604 Check command object for the `check_vmware_esx` plugin. Receive in KBps(Kilobytes per Second).
4605
4606 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4607
4608 Name                    | Description
4609 ------------------------|--------------
4610 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4611 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4612 vmware_vmname           | **Required.** Virtual machine name.
4613 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4614 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".
4615 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".
4616 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4617 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4618 vmware_sessionfile      | **Optional.** Session file name enhancement.
4619 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4620 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4621 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4622 vmware_password         | **Optional.** The username's password. No value defined as default.
4623 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
4624 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4625 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4626
4627
4628 **vmware-esx-soap-vm-net-send**
4629
4630 Check command object for the `check_vmware_esx` plugin. Send in KBps(Kilobytes per Second).
4631
4632 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4633
4634 Name                    | Description
4635 ------------------------|--------------
4636 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4637 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4638 vmware_vmname           | **Required.** Virtual machine name.
4639 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4640 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".
4641 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".
4642 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4643 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4644 vmware_sessionfile      | **Optional.** Session file name enhancement.
4645 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4646 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4647 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4648 vmware_password         | **Optional.** The username's password. No value defined as default.
4649 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
4650 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4651 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4652
4653
4654 **vmware-esx-soap-vm-io**
4655
4656 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.
4657
4658 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4659
4660 Name                    | Description
4661 ------------------------|--------------
4662 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4663 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4664 vmware_vmname           | **Required.** Virtual machine name.
4665 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4666 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".
4667 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".
4668 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4669 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4670 vmware_sessionfile      | **Optional.** Session file name enhancement.
4671 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4672 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4673 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4674 vmware_password         | **Optional.** The username's password. No value defined as default.
4675 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
4676
4677
4678 **vmware-esx-soap-vm-io-read**
4679
4680 Check command object for the `check_vmware_esx` plugin. Average number of kilobytes read from the disk each second.
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 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4701 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4702
4703
4704 **vmware-esx-soap-vm-io-write**
4705
4706 Check command object for the `check_vmware_esx` plugin. Average number of kilobytes written to disk each second.
4707
4708 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4709
4710 Name                    | Description
4711 ------------------------|--------------
4712 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4713 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4714 vmware_vmname           | **Required.** Virtual machine name.
4715 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4716 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".
4717 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".
4718 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4719 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4720 vmware_sessionfile      | **Optional.** Session file name enhancement.
4721 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4722 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4723 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4724 vmware_password         | **Optional.** The username's password. No value defined as default.
4725 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
4726 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4727 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4728
4729
4730 **vmware-esx-soap-vm-io-usage**
4731
4732 Check command object for the `check_vmware_esx` plugin. Aggregated disk I/O rate.
4733
4734 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4735
4736 Name                    | Description
4737 ------------------------|--------------
4738 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4739 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4740 vmware_vmname           | **Required.** Virtual machine name.
4741 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4742 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".
4743 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".
4744 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4745 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4746 vmware_sessionfile      | **Optional.** Session file name enhancement.
4747 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4748 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4749 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4750 vmware_password         | **Optional.** The username's password. No value defined as default.
4751 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
4752 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4753 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4754
4755
4756 **vmware-esx-soap-vm-runtime**
4757
4758 Check command object for the `check_vmware_esx` plugin. Shows virtual machine runtime info.
4759
4760 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4761
4762 Name                    | Description
4763 ------------------------|--------------
4764 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4765 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4766 vmware_vmname           | **Required.** Virtual machine name.
4767 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4768 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".
4769 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".
4770 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4771 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4772 vmware_sessionfile      | **Optional.** Session file name enhancement.
4773 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4774 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4775 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4776 vmware_password         | **Optional.** The username's password. No value defined as default.
4777 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
4778
4779
4780 **vmware-esx-soap-vm-runtime-con**
4781
4782 Check command object for the `check_vmware_esx` plugin. Shows the connection state.
4783
4784 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4785
4786 Name                    | Description
4787 ------------------------|--------------
4788 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4789 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4790 vmware_vmname           | **Required.** Virtual machine name.
4791 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4792 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".
4793 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".
4794 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4795 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4796 vmware_sessionfile      | **Optional.** Session file name enhancement.
4797 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4798 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4799 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4800 vmware_password         | **Optional.** The username's password. No value defined as default.
4801 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
4802
4803
4804 **vmware-esx-soap-vm-runtime-powerstate**
4805
4806 Check command object for the `check_vmware_esx` plugin. Shows virtual machine power state: poweredOn, poweredOff or suspended.
4807
4808 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4809
4810 Name                    | Description
4811 ------------------------|--------------
4812 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4813 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4814 vmware_vmname           | **Required.** Virtual machine name.
4815 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4816 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".
4817 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".
4818 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4819 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4820 vmware_sessionfile      | **Optional.** Session file name enhancement.
4821 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4822 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4823 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4824 vmware_password         | **Optional.** The username's password. No value defined as default.
4825 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
4826
4827
4828 **vmware-esx-soap-vm-runtime-status**
4829
4830 Check command object for the `check_vmware_esx` plugin. Overall object status (gray/green/red/yellow).
4831
4832 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4833
4834 Name                    | Description
4835 ------------------------|--------------
4836 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4837 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4838 vmware_vmname           | **Required.** Virtual machine name.
4839 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4840 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".
4841 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".
4842 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4843 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4844 vmware_sessionfile      | **Optional.** Session file name enhancement.
4845 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4846 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4847 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4848 vmware_password         | **Optional.** The username's password. No value defined as default.
4849 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
4850
4851
4852 **vmware-esx-soap-vm-runtime-consoleconnections**
4853
4854 Check command object for the `check_vmware_esx` plugin. Console connections to virtual machine.
4855
4856 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4857
4858 Name                    | Description
4859 ------------------------|--------------
4860 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4861 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4862 vmware_vmname           | **Required.** Virtual machine name.
4863 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4864 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".
4865 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".
4866 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4867 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4868 vmware_sessionfile      | **Optional.** Session file name enhancement.
4869 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4870 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4871 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4872 vmware_password         | **Optional.** The username's password. No value defined as default.
4873 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
4874 vmware_warn             | **Optional.** The warning threshold. No value defined as default.
4875 vmware_crit             | **Optional.** The critical threshold. No value defined as default.
4876
4877
4878 **vmware-esx-soap-vm-runtime-gueststate**
4879
4880 Check command object for the `check_vmware_esx` plugin. Guest OS status. Needs VMware Tools installed and running.
4881
4882 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4883
4884 Name                    | Description
4885 ------------------------|--------------
4886 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4887 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4888 vmware_vmname           | **Required.** Virtual machine name.
4889 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4890 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".
4891 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".
4892 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4893 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4894 vmware_sessionfile      | **Optional.** Session file name enhancement.
4895 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4896 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4897 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4898 vmware_password         | **Optional.** The username's password. No value defined as default.
4899 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
4900
4901 **vmware-esx-soap-vm-runtime-tools**
4902
4903 Check command object for the `check_vmware_esx` plugin. Guest OS status. VMware tools  status.
4904
4905 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4906
4907 Name                    | Description
4908 ------------------------|--------------
4909 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4910 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4911 vmware_vmname           | **Required.** Virtual machine name.
4912 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4913 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".
4914 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".
4915 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4916 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4917 vmware_sessionfile      | **Optional.** Session file name enhancement.
4918 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4919 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4920 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4921 vmware_password         | **Optional.** The username's password. No value defined as default.
4922 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
4923 vmware_openvmtools      | **Optional** Prevent CRITICAL state for installed and running Open VM Tools.
4924
4925
4926 **vmware-esx-soap-vm-runtime-issues**
4927
4928 Check command object for the `check_vmware_esx` plugin. All issues for the virtual machine.
4929
4930 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4931
4932 Name                    | Description
4933 ------------------------|--------------
4934 vmware_datacenter       | **Optional.** Datacenter/vCenter hostname. Conflicts with **vmware_host**.
4935 vmware_host             | **Optional.** ESX or ESXi hostname. Conflicts with **vmware_datacenter**.
4936 vmware_vmname           | **Required.** Virtual machine name.
4937 vmware_sslport          | **Optional.** SSL port connection. Defaults to "443".
4938 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".
4939 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".
4940 vmware_timeout          | **Optional.** Seconds before plugin times out. Defaults to "90".
4941 vmware_trace            | **Optional.** Set verbosity level of vSphere API request/respond trace.
4942 vmware_sessionfile      | **Optional.** Session file name enhancement.
4943 vmware_sessionfiledir   | **Optional.** Path to store the **vmware_sessionfile** file. Defaults to "/var/spool/icinga2/tmp".
4944 vmware_nosession        | **Optional.** No auth session -- IT SHOULD BE USED FOR TESTING PURPOSES ONLY!. Defaults to "false".
4945 vmware_username         | **Optional.** The username to connect to Host or vCenter server. No value defined as default.
4946 vmware_password         | **Optional.** The username's password. No value defined as default.
4947 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
4948 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.
4949
4950
4951 ### Web <a id="plugin-contrib-web"></a>
4952
4953 This category includes all plugins for web-based checks.
4954
4955 #### apache_status <a id="plugin-contrib-command-apache_status"></a>
4956
4957 The [check_apache_status.pl](https://github.com/lbetz/check_apache_status) plugin
4958 uses the [/server-status](https://httpd.apache.org/docs/current/mod/mod_status.html)
4959 HTTP endpoint to monitor status metrics for the Apache webserver.
4960
4961 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4962
4963 Name                    | Description
4964 ------------------------|----------------------------------------------------------------------------------
4965 apache_status_address   | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, `address6` otherwise.
4966 apache_status_port      | **Optional.** the http port.
4967 apache_status_url       | **Optional.** URL to use, instead of the default (http://`apache_status_address`/server-status).
4968 apache_status_ssl       | **Optional.** set to use ssl connection
4969 apache_status_timeout   | **Optional.** timeout in seconds
4970 apache_status_warning   | **Optional.** Warning threshold (number of open slots, busy workers and idle workers that will cause a WARNING) like ':20,50,:50'.
4971 apache_status_critical  | **Optional.** Critical threshold (number of open slots, busy workers and idle workers that will cause a CRITICAL) like ':10,25,:20'.
4972
4973
4974 ### cert <a id="plugin-check-command-ssl_cert"></a>
4975
4976 The [check_ssl_cert](https://github.com/matteocorti/check_ssl_cert) plugin
4977 uses the openssl binary (and optional curl) to check a X.509 certificate.
4978
4979 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
4980
4981 Name                      | Description
4982 --------------------------|--------------
4983 ssl_cert_address              | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
4984 ssl_cert_port                 | **Optional.** TCP port number (default: 443).
4985 ssl_cert_file                 | **Optional.** Local file path. Works only if `ssl_cert_address` is set to "localhost".
4986 ssl_cert_warn                 | **Optional.** Minimum number of days a certificate has to be valid.
4987 ssl_cert_critical             | **Optional.** Minimum number of days a certificate has to be valid to issue a critical status.
4988 ssl_cert_cn                   | **Optional.** Pattern to match the CN of the certificate.
4989 ssl_cert_altnames             | **Optional.** Matches the pattern specified in -n with alternate
4990 ssl_cert_issuer               | **Optional.** Pattern to match the issuer of the certificate.
4991 ssl_cert_org                  | **Optional.** Pattern to match the organization of the certificate.
4992 ssl_cert_email                | **Optional.** Pattern to match the email address contained in the certificate.
4993 ssl_cert_serial               | **Optional.** Pattern to match the serial number.
4994 ssl_cert_noauth               | **Optional.** Ignore authority warnings (expiration only)
4995 ssl_cert_match_host           | **Optional.** Match CN with the host name.
4996 ssl_cert_selfsigned           | **Optional.** Allow self-signed certificate.
4997 ssl_cert_sni                  | **Optional.** Sets the TLS SNI (Server Name Indication) extension.
4998 ssl_cert_timeout              | **Optional.** Seconds before connection times out (default: 15)
4999 ssl_cert_protocol             | **Optional.** Use the specific protocol {http,smtp,pop3,imap,ftp,xmpp,irc,ldap} (default: http).
5000 ssl_cert_clientcert           | **Optional.** Use client certificate to authenticate.
5001 ssl_cert_clientpass           | **Optional.** Set passphrase for client certificate.
5002 ssl_cert_ssllabs              | **Optional.** SSL Labs assestment
5003 ssl_cert_ssllabs_nocache      | **Optional.** Forces a new check by SSL Labs
5004 ssl_cert_rootcert             | **Optional.** Root certificate or directory to be used for certficate validation.
5005 ssl_cert_ignore_signature     | **Optional.** Do not check if the certificate was signed with SHA1 od MD5.
5006 ssl_cert_ssl_version          | **Optional.** Force specific SSL version out of {ssl2,ssl3,tls1,tls1_1,tls1_2}.
5007 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.
5008 ssl_cert_cipher               | **Optional.** Cipher selection: force {ecdsa,rsa} authentication.
5009 ssl_cert_ignore_expiration    | **Optional.** Ignore expiration date.
5010 ssl_cert_ignore_ocsp          | **Optional.** Do not check revocation with OCSP.
5011
5012
5013 #### jmx4perl <a id="plugin-contrib-command-jmx4perl"></a>
5014
5015 The [check_jmx4perl](http://search.cpan.org/~roland/jmx4perl/scripts/check_jmx4perl) plugin
5016 uses the HTTP API exposed by the [Jolokia](https://jolokia.org)
5017 web application and queries Java message beans on an application server. It is
5018 part of the `JMX::Jmx4Perl` Perl module which includes detailed
5019 [documentation](http://search.cpan.org/~roland/jmx4perl/scripts/check_jmx4perl).
5020
5021 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5022
5023 Name                         | Description
5024 -----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------
5025 jmx4perl_url                 | **Required.** URL to agent web application. Defaults to "http://$address$:8080/jolokia".
5026 jmx4perl_product             | **Optional.** Name of app server product (e.g. jboss), by default is uses an autodetection facility.
5027 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.
5028 jmx4perl_mbean               | **Optional.** MBean name (e.g. java.lang:type=Memory).
5029 jmx4perl_attribute           | **Optional.** Attribute name (e.g. HeapMemoryUsage).
5030 jmx4perl_operation           | **Optional.** Operation to execute.
5031 jmx4perl_value               | **Optional.** Shortcut for specifying mbean/attribute/path. Slashes within names must be escaped with backslash.
5032 jmx4perl_delta               | **Optional.** Switches on incremental mode. Optional argument are seconds used for normalizing.
5033 jmx4perl_path                | **Optional.** Inner path for extracting a single value from a complex attribute or return value (e.g. used).
5034 jmx4perl_target              | **Optional.** JSR-160 Service URL specifing the target server.
5035 jmx4perl_target_user         | **Optional.** Username to use for JSR-160 connection.
5036 jmx4perl_target_password     | **Optional.** Password to use for JSR-160 connection.
5037 jmx4perl_proxy               | **Optional.** Proxy to use.
5038 jmx4perl_user                | **Optional.** User for HTTP authentication.
5039 jmx4perl_password            | **Optional.** Password for HTTP authentication.
5040 jmx4perl_name                | **Optional.** Name to use for output, by default a standard value based on the MBean and attribute will be used.
5041 jmx4perl_method              | **Optional.** HTTP method to use, either get or post. By default a method is determined automatically based on the request type.
5042 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.
5043 jmx4perl_base_mbean          | **Optional.** Base MBean name, interprets critical and warning values as relative in the range 0 .. 100%. Requires "jmx4perl_base_attribute".
5044 jmx4perl_base_attribute      | **Optional.** Base attribute for a relative check. Requires "jmx4perl_base_mbean".
5045 jmx4perl_base_path           | **Optional.** Base path for relative checks, where this path is used on the base attribute's value.
5046 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.
5047 jmx4perl_null                | **Optional.** Value which should be used in case of a null return value of an operation or attribute. Defaults to null.
5048 jmx4perl_string              | **Optional.** Force string comparison for critical and warning checks. Defaults to false.
5049 jmx4perl_numeric             | **Optional.** Force numeric comparison for critical and warning checks. Defaults to false.
5050 jmx4perl_critical            | **Optional.** Critical threshold for value.
5051 jmx4perl_warning             | **Optional.** Warning threshold for value.
5052 jmx4perl_label               | **Optional.** Label to be used for printing out the result of the check. For placeholders which can be used see the documentation.
5053 jmx4perl_perfdata            | **Optional.** Whether performance data should be omitted, which are included by default. Defaults to "on" for numeric values, to "off" for strings.
5054 jmx4perl_unknown_is_critical | **Optional.** Map UNKNOWN errors to errors with a CRITICAL status. Defaults to false.
5055 jmx4perl_timeout             | **Optional.** Seconds before plugin times out. Defaults to "15".
5056 jmx4perl_config              | **Optional.** Path to configuration file.
5057 jmx4perl_server              | **Optional.** Symbolic name of server url to use, which needs to be configured in the configuration file.
5058 jmx4perl_check               | **Optional.** Name of a check configuration as defined in the configuration file, use array if you need arguments.
5059
5060
5061 #### kdc <a id="plugin-contrib-command-kdc"></a>
5062
5063 The [check_kdc](https://exchange.nagios.org/directory/Plugins/Security/check_kdc/details) plugin
5064 uses the Kerberos `kinit` binary to monitor Kerberos 5 KDC by acquiring a ticket.
5065
5066 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5067
5068 Name            | Description
5069 ----------------|--------------------------------------------------------------------------
5070 kdc_address     | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, `address6` otherwise.
5071 kdc_port        | **Optional** Port on which KDC runs (default 88).
5072 kdc_principal   | **Required** Principal name to authenticate as (including realm).
5073 kdc_keytab      | **Required** Keytab file containing principal's key.
5074
5075
5076 #### nginx_status <a id="plugin-contrib-command-nginx_status"></a>
5077
5078 The [check_nginx_status.pl](https://github.com/regilero/check_nginx_status) plugin
5079 uses the [/nginx_status](https://nginx.org/en/docs/http/ngx_http_stub_status_module.html)
5080 HTTP endpoint which provides metrics for monitoring Nginx.
5081
5082 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5083
5084 Name                            | Description
5085 --------------------------------|----------------------------------------------------------------------------------
5086 nginx_status_host_address       | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, `address6` otherwise.
5087 nginx_status_port               | **Optional.** the http port.
5088 nginx_status_url                | **Optional.** URL to use, instead of the default (http://`nginx_status_hostname`/nginx_status).
5089 nginx_status_servername         | **Optional.** ServerName to use if you specified an IP to match the good Virtualhost in your target
5090 nginx_status_ssl                | **Optional.** set to use ssl connection
5091 nginx_status_disable_sslverify          | **Optional.** set to disable SSL hostname verification
5092 nginx_status_user               | **Optional.** Username for basic auth
5093 nginx_status_pass               | **Optional.** Password for basic auth
5094 nginx_status_realm              | **Optional.** Realm for basic auth
5095 nginx_status_maxreach           | **Optional.** Number of max processes reached (since last check) that should trigger an alert
5096 nginx_status_timeout            | **Optional.** timeout in seconds
5097 nginx_status_warn               | **Optional.** Warning threshold (number of active connections, ReqPerSec or ConnPerSec that will cause a WARNING) like '10000,100,200'.
5098 nginx_status_critical           | **Optional.** Critical threshold (number of active connections, ReqPerSec or ConnPerSec that will cause a CRITICAL) like '20000,200,300'.
5099
5100
5101 #### rbl <a id="plugin-contrib-command-rbl"></a>
5102
5103 The [check_rbl](https://github.com/matteocorti/check_rbl) plugin
5104 uses the `Net::DNS` Perl library to check whether your SMTP server
5105 is blacklisted.
5106
5107 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5108
5109 Name            | Description
5110 ----------------|--------------------------------------------------------------------------
5111 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.
5112 rbl_server      | **Required** List of RBL servers as an array.
5113 rbl_warning     | **Optional** Number of blacklisting servers for a warning.
5114 rbl_critical    | **Optional** Number of blacklisting servers for a critical.
5115 tbl_timeout     | **Optional** Seconds before plugin times out (default: 15).
5116
5117
5118 #### squid <a id="plugin-contrib-command-squid"></a>
5119
5120 The [check_squid](https://exchange.icinga.com/exchange/check_squid) plugin
5121 uses the `squidclient` binary to monitor a [Squid proxy](http://www.squid-cache.org).
5122
5123 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5124
5125 Name                    | Description
5126 ------------------------|----------------------------------------------------------------------------------
5127 squid_hostname          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
5128 squid_data              | **Optional.** Data to fetch (default: Connections) available data: Connections Cache Resources Memory FileDescriptors.
5129 squid_port              | **Optional.** Port number (default: 3128).
5130 squid_user              | **Optional.** WWW user
5131 squid_password          | **Optional.** WWW password
5132 squid_warning           | **Optional.** Warning threshold. See http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT for the threshold format.
5133 squid_critical          | **Optional.** Critical threshold. See http://nagiosplug.sourceforge.net/developer-guidelines.html#THRESHOLDFORMAT for the threshold format.
5134 squid_client            | **Optional.** Path of squidclient (default: /usr/bin/squidclient).
5135 squid_timeout           | **Optional.** Seconds before plugin times out (default: 15).
5136
5137
5138 #### webinject <a id="plugin-contrib-command-webinject"></a>
5139
5140 The [check_webinject](https://labs.consol.de/de/nagios/check_webinject/index.html) plugin
5141 uses [WebInject](http://www.webinject.org/manual.html) to test web applications
5142 and web services in an automated fashion.
5143 It can be used to test individual system components that have HTTP interfaces
5144 (JSP, ASP, CGI, PHP, AJAX, Servlets, HTML Forms, XML/SOAP Web Services, REST, etc),
5145 and can be used as a test harness to create a suite of HTTP level automated functional,
5146 acceptance, and regression tests. A test harness allows you to run many test cases
5147 and collect/report your results. WebInject offers real-time results
5148 display and may also be used for monitoring system response times.
5149
5150 Custom attributes passed as [command parameters](03-monitoring-basics.md#command-passing-parameters):
5151
5152 Name                    | Description
5153 ------------------------|--------------
5154 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.
5155 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.
5156 webinject_no_output     | **Optional.** Suppresses all output to STDOUT except the results summary.
5157 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.
5158 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.
5159 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.