]> granicus.if.org Git - icinga2/blob - itl/command-plugins.conf
Merge pull request #6139 from Icinga/itl/disk-docker-types
[icinga2] / itl / command-plugins.conf
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2018 Icinga Development Team (https://www.icinga.com/)  *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 template CheckCommand "ipv4-or-ipv6" {
21         vars.check_address = {{
22                 var addr_v4 = macro("$address$")
23                 var addr_v6 = macro("$address6$")
24
25                 if (addr_v4 && !macro("$check_ipv6$") || macro("$check_ipv4$")) {
26                         return addr_v4
27                 } else {
28                         return addr_v6
29                 }
30         }}
31
32         vars.check_ipv4 = false
33         vars.check_ipv6 = false
34 }
35
36 template CheckCommand "ping-common" {
37         command = [ PluginDir + "/check_ping" ]
38
39         arguments = {
40                 "-H" = {
41                         value = "$ping_address$"
42                         description = "host to ping"
43                 }
44                 "-w" = {
45                         value = "$ping_wrta$,$ping_wpl$%"
46                         description = "warning threshold pair"
47                 }
48                 "-c" = {
49                         value = "$ping_crta$,$ping_cpl$%"
50                         description = "critical threshold pair"
51                 }
52                 "-p" = {
53                         value = "$ping_packets$"
54                         description = "number of ICMP ECHO packets to send (Default: 5)"
55                 }
56                 "-t" = {
57                         value = "$ping_timeout$"
58                         description = "Seconds before connection times out (default: 10)"
59                 }
60         }
61
62         vars.ping_wrta = 100
63         vars.ping_wpl = 5
64         vars.ping_crta = 200
65         vars.ping_cpl = 15
66 }
67
68 object CheckCommand "ping" {
69         import "ping-common"
70         import "ipv4-or-ipv6"
71
72         vars.ping_address = "$check_address$"
73 }
74
75 object CheckCommand "ping4" {
76         import "ping-common"
77
78         command += [ "-4" ]
79
80         vars.ping_address = "$address$"
81 }
82
83 object CheckCommand "ping6" {
84         import "ping-common"
85
86         command += [ "-6" ]
87
88         vars.ping_address = "$address6$"
89 }
90
91 template CheckCommand "hostalive-common" {
92         vars.ping_wrta = 3000.0
93         vars.ping_wpl = 80
94
95         vars.ping_crta = 5000.0
96         vars.ping_cpl = 100
97 }
98
99 object CheckCommand "hostalive" {
100         import "ping"
101         import "hostalive-common"
102 }
103
104 object CheckCommand "hostalive4" {
105         import "ping4"
106         import "hostalive-common"
107 }
108
109 object CheckCommand "hostalive6" {
110         import "ping6"
111         import "hostalive-common"
112 }
113
114 template CheckCommand "fping-common" {
115         command = [
116                 PluginDir + "/check_fping",
117                 "$fping_address$"
118         ]
119
120         arguments = {
121                 "-w" = {
122                         value = "$fping_wrta$,$fping_wpl$%"
123                         description = "warning threshold pair"
124                 }
125                 "-c" = {
126                         value = "$fping_crta$,$fping_cpl$%"
127                         description = "critical threshold pair"
128                 }
129                 "-n" = {
130                         value = "$fping_number$"
131                         description = "number of ICMP packets to send (default: 1)"
132                 }
133                 "-i" = {
134                         value = "$fping_interval$"
135                         description = "Interval (ms) between sending packets (default: fping's default for -p)"
136                 }
137                 "-b" = {
138                         value = "$fping_bytes$"
139                         description = "size of ICMP packet (default: 56)"
140                 }
141                 "-T" = {
142                         value = "$fping_target_timeout$"
143                         description = "Target timeout (ms) (default: fping's default for -t)"
144                 }
145                 "-S" = {
146                         value = "$fping_source_ip$"
147                         description = "name or IP Address of sourceip"
148                 }
149                 "-I" = {
150                         value = "$fping_source_interface$"
151                         description = "source interface name"
152                 }
153         }
154
155         vars.fping_wrta = 100
156         vars.fping_wpl = 5
157         vars.fping_crta = 200
158         vars.fping_cpl = 15
159         vars.fping_number = 5
160         vars.fping_interval = 500
161 }
162
163 object CheckCommand "fping4" {
164         import "fping-common"
165
166         command += [ "-4" ]
167
168         vars.fping_address = "$address$"
169 }
170
171 object CheckCommand "fping6" {
172         import "fping-common"
173
174         command += [ "-6" ]
175
176         vars.fping_address = "$address6$"
177 }
178
179 object CheckCommand "tcp" {
180         import "ipv4-or-ipv6"
181
182         command = [ PluginDir + "/check_tcp" ]
183
184         arguments = {
185                 "-H" = {
186                         value =  "$tcp_address$"
187                         description = "Host name, IP Address, or unix socket (must be an absolute path)."
188                 }
189                 "-p" = {
190                         value =  "$tcp_port$"
191                         description = "The TCP port number."
192                 }
193                 "-e" = {
194                         value = "$tcp_expect$"
195                         description = "String to expect in server response (may be repeated)."
196                 }
197                 "-A" = {
198                         set_if = "$tcp_all$"
199                         description = "All expect strings need to occur in server response. Defaults to false."
200                 }
201                 "-E_send" = {
202                         key = "-E"
203                         order = 1
204                         set_if = "$tcp_escape_send$"
205                         description = "Enable usage of \n, \r, \t or \\ in send string."
206                 }
207                 "-s" = {
208                         order = 2
209                         value = "$tcp_send$"
210                         description = "String to send to the server."
211                 }
212                 "-E_quit" = {
213                         key = "-E"
214                         order = 3
215                         set_if = "$tcp_escape_quit$"
216                         description = "Enable usage of \n, \r, \t or \\ in quit string."
217                 }
218                 "-q" = {
219                         order = 4
220                         value = "$tcp_quit$"
221                         description = "String to send server to initiate a clean close of the connection."
222                 }
223                 "-r" = {
224                         value = "$tcp_refuse$"
225                         description = "Accept TCP refusals with states ok, warn, crit. Defaults to crit."
226                 }
227                 "-M" = {
228                         value = "$tcp_mismatch$"
229                         description = "Accept expected string mismatches with states ok, warn, crit. Defaults to warn."
230                 }
231                 "-j" = {
232                         set_if = "$tcp_jail$"
233                         description = "Hide output from TCP socket."
234                 }
235                 "-m" = {
236                         value = "$tcp_maxbytes$"
237                         description = "Close connection once more than this number of bytes are received."
238                 }
239                 "-d" = {
240                         value = "$tcp_delay$"
241                         description = "Seconds to wait between sending string and polling for response."
242                 }
243                 "-D" = {
244                         value = "$tcp_certificate$"
245                         description = "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) - seperated by comma."
246                 }
247                 "-S" = {
248                         set_if = "$tcp_ssl$"
249                         description = "Use SSL for the connection."
250                 }
251                 "-w" = {
252                         value = "$tcp_wtime$"
253                         description = "Response time to result in warning status (seconds)."
254                 }
255                 "-c" = {
256                         value = "$tcp_ctime$"
257                         description = "Response time to result in critical status (seconds)."
258                 }
259                 "-t" = {
260                         value = "$tcp_timeout$"
261                         description = "Seconds before connection times out. Defaults to 10."
262                 }
263                 "-4" = {
264                         set_if = "$tcp_ipv4$"
265                         description = "Use IPv4 connection"
266                 }
267                 "-6" = {
268                         set_if = "$tcp_ipv6$"
269                         description = "Use IPv6 connection"
270                 }
271         }
272
273         vars.tcp_address = "$check_address$"
274         vars.tcp_all = false
275         vars.tcp_refuse = "crit"
276         vars.tcp_mismatch = "warn"
277         vars.tcp_timeout = 10
278         vars.check_ipv4 = "$tcp_ipv4$"
279         vars.check_ipv6 = "$tcp_ipv6$"
280 }
281
282 object CheckCommand "ssl" {
283         import "ipv4-or-ipv6"
284
285         command = [ PluginDir + "/check_tcp" ]
286
287         arguments = {
288                 "-H" = {
289                         value = "$ssl_address$"
290                         description = "Host address"
291                 }
292                 "-p" = {
293                         value = "$ssl_port$"
294                         description ="TCP port (default: 443)"
295                 }
296                 "--ssl" = {
297                         description = "Use SSL for the connection"
298                 }
299                 "-t" = {
300                         value = "$ssl_timeout$"
301                         description = "Seconds before connection times out (default: 10)"
302                 }
303                 "-D" = {{
304                         var days_warn = macro("$ssl_cert_valid_days_warn$")
305                         var days_critical = macro("$ssl_cert_valid_days_critical$")
306                         if (days_warn) {
307                                 if (days_critical) {
308                                         return days_warn + "," + days_critical
309                                 } else {
310                                         return days_warn
311                                 }
312                         }
313                 }}
314                 "-N" = {
315                         value = "$ssl_sni$"
316                         description = "Enable SSL/TLS hostname extension support (SNI)"
317                 }
318         }
319
320         vars.ssl_address = "$check_address$"
321         vars.ssl_port = 443
322         vars.ssl_cert_valid_days_warn = false
323         vars.ssl_cert_valid_days_critical = false
324 }
325
326
327 object CheckCommand "udp" {
328         import "ipv4-or-ipv6"
329
330         command = [
331                 PluginDir + "/check_udp",
332                 "-H", "$udp_address$",
333                 "-p", "$udp_port$"
334         ]
335
336         arguments = {
337                 "-s" = {
338                         value = "$udp_send$"
339                         required = true
340                         description = "String to send to the server"
341                 }
342                 "-e" = {
343                         value = "$udp_expect$"
344                         required = true
345                         description = " String to expect in server response"
346                 }
347                 "-q" = {
348                         value = "$udp_quit$"
349                         description = "String to send server to initiate a clean close of the connection"
350                 }
351                 "-4" = {
352                         set_if = "$udp_ipv4$"
353                         description = "Use IPv4 connection"
354                 }
355                 "-6" = {
356                         set_if = "$udp_ipv6$"
357                         description = "Use IPv6 connection"
358                 }
359         }
360
361         vars.udp_address = "$check_address$"
362         vars.check_ipv4 = "$udp_ipv4$"
363         vars.check_ipv6 = "$udp_ipv6$"
364 }
365
366 object CheckCommand "http" {
367         import "ipv4-or-ipv6"
368
369         command = [ PluginDir + "/check_http" ]
370
371         arguments = {
372                 "-H" = {
373                         value = "$http_vhost$"
374                         description = "Host name argument for servers using host headers (virtual host)"
375                 }
376                 "-I" = {
377                         value = "$http_address$"
378                         description = "IP address or name (use numeric address if possible to bypass DNS lookup)"
379                 }
380                 "-u" = {
381                         value = "$http_uri$"
382                         description = "URL to GET or POST (default: /)"
383                 }
384                 "-p" = {
385                         value = "$http_port$"
386                         description = "Port number (default: 80)"
387                 }
388                 "-S" = {
389                         set_if = "$http_ssl$"
390                         description = "Connect via SSL"
391                 }
392                 "-S1" = {
393                         set_if = "$http_ssl_force_tlsv1$"
394                         description = "Connect via SSL version TLSv1"
395                 }
396                 "-S1.1" = {
397                         set_if = "$http_ssl_force_tlsv1_1$"
398                         description = "Connect via SSL version TLSv1.1"
399                 }
400                 "-S1.2" = {
401                         set_if = "$http_ssl_force_tlsv1_2$"
402                         description = "Connect via SSL version TLSv1.2"
403                 }
404                 "-S2" = {
405                         set_if = "$http_ssl_force_sslv2$"
406                         description = "Connect via SSL version SSLv2"
407                 }
408                 "-S3" = {
409                         set_if = "$http_ssl_force_sslv3$"
410                         description = "Connect via SSL version SSLv3"
411                 }
412                 "-S1+" = {
413                         set_if = "$http_ssl_force_tlsv1_or_higher$"
414                         description = "Connect via SSL version TLSv1 and newer"
415                 }
416                 "-S1.1+" = {
417                         set_if = "$http_ssl_force_tlsv1_1_or_higher$"
418                         description = "Connect via SSL version TLSv1.1 and newer"
419                 }
420                 "-S1.2+" = {
421                         set_if = "$http_ssl_force_tlsv1_2_or_higher$"
422                         description = "Connect via SSL version TLSv1.2 and newer"
423                 }
424                 "-S2+" = {
425                         set_if = "$http_ssl_force_sslv2_or_higher$"
426                         description = "Connect via SSL version SSLv2 and newer"
427                 }
428                 "-S3+" = {
429                         set_if = "$http_ssl_force_sslv3_or_higher$"
430                         description = "Connect via SSL version SSLv3 and newer"
431                 }
432                 "--sni" = {
433                         set_if = "$http_sni$"
434                         description = "Enable SSL/TLS hostname extension support (SNI)"
435                 }
436                 "-C" = {
437                         value = "$http_certificate$"
438                         description = "Minimum number of days a certificate has to be valid. This parameter explicitely sets the port to 443 and ignores the URL if passed."
439                 }
440                 "-J" = {
441                         value = "$http_clientcert$"
442                         description = "Name of file contains the client certificate (PEM format)"
443                 }
444                 "-K" = {
445                         value = "$http_privatekey$"
446                         description = "Name of file contains the private key (PEM format)"
447                 }
448                 "-a" = {
449                         value = "$http_auth_pair$"
450                         description = "Username:password on sites with basic authentication"
451                 }
452                 "--no-body" = {
453                         set_if = "$http_ignore_body$"
454                         description = "Don't wait for document body: stop reading after headers"
455                 }
456                 "-w" = {
457                         value = "$http_warn_time$"
458                         description = "Response time to result in warning status (seconds)"
459                 }
460                 "-c" = {
461                         value = "$http_critical_time$"
462                         description = "Response time to result in critical status (seconds)"
463                 }
464                 "-e" = {
465                         value = "$http_expect$"
466                         description = "Comma-delimited list of strings, at least one of them is expected in the first (status) line of the server response (default: HTTP/1.)"
467                 }
468                 "-d" = {
469                         value = "$http_headerstring$"
470                         description = "String to expect in the response headers"
471                 }
472                 "-s" = {
473                         value = "$http_string$"
474                         description = "String to expect in the content"
475                 }
476                 "-P" = {
477                         value = "$http_post$"
478                         description = "URL encoded http POST data"
479                 }
480                 "-j" = {
481                         value = "$http_method$"
482                         description = "Set http method (for example: HEAD, OPTIONS, TRACE, PUT, DELETE)"
483                 }
484                 "-M" = {
485                         value = "$http_maxage$"
486                         description = "Warn if document is more than seconds old"
487                 }
488                 "-T" = {
489                         value = "$http_contenttype$"
490                         description = "Specify Content-Type header when POSTing"
491                 }
492                 "-l" = {
493                         set_if = "$http_linespan$"
494                         description = "Allow regex to span newline"
495                         order = 1
496                 }
497                 "-r" = {
498                         value = "$http_expect_body_regex$"
499                         description = "Search page for regex"
500                         order = 2
501                 }
502                 "-R" = {
503                         value = "$http_expect_body_eregi$"
504                         description = "Search page for case-insensitive regex"
505                         order = 2
506                 }
507                 "--invert-regex" = {
508                         set_if = "$http_invertregex$"
509                         description = "Return CRITICAL if found, OK if not"
510                 }
511                 "-b" = {
512                         value = "$http_proxy_auth_pair$"
513                         description = "Username:password on proxy-servers with basic authentication"
514                 }
515                 "-A" = {
516                         value = "$http_useragent$"
517                         description = "String to be sent in http header as User Agent"
518                 }
519                 "-k" = {
520                         value = "$http_header$"
521                         description = "Any other tags to be sent in http header"
522                 }
523                 "-E" = {
524                         set_if = "$http_extendedperfdata$"
525                         description = "Print additional perfdata"
526                 }
527                 "-f" = {
528                         value = "$http_onredirect$"
529                         description = "How to handle redirect pages"
530                 }
531                 "-m" = {
532                         value = "$http_pagesize$"
533                         description = "Minim page size required:Maximum page size required"
534                 }
535                 "-t" = {
536                         value = "$http_timeout$"
537                         description = "Seconds before connection times out"
538                 }
539                 "-4" = {
540                         set_if = "$http_ipv4$"
541                         description = "Use IPv4 connection"
542                 }
543                 "-6" = {
544                         set_if = "$http_ipv6$"
545                         description = "Use IPv6 connection"
546                 }
547                 "-L" = {
548                         set_if = "$http_link$"
549                         description = "Wrap output in HTML link"
550                 }
551                 "-v" = {
552                         set_if = "$http_verbose$"
553                         description = "Show details for command-line debugging"
554                 }
555         }
556
557         vars.http_address = "$check_address$"
558         vars.http_ssl = false
559         vars.http_sni = false
560         vars.http_linespan = false
561         vars.http_invertregex = false
562         vars.check_ipv4 = "$http_ipv4$"
563         vars.check_ipv6 = "$http_ipv6$"
564         vars.http_link = false
565         vars.http_verbose = false
566 }
567
568 object CheckCommand "ftp" {
569         import "ipv4-or-ipv6"
570
571         command = [ PluginDir + "/check_ftp" ]
572
573         arguments = {
574                 "-H" = {
575                         value = "$ftp_address$"
576                         description = "The host's address. Defaults to $address$ or $address6$ if the address attribute is not set."
577                 }
578                 "-p" = {
579                         value = "$ftp_port$"
580                         description = "The FTP port number. Defaults to none"
581                 }
582                 "-e" = {
583                         value = "$ftp_expect$"
584                         description = "String to expect in server response (may be repeated)."
585                 }
586                 "-A" = {
587                         set_if = "$ftp_all$"
588                         description = "All expect strings need to occur in server response. Default is any."
589                 }
590                 "-E_send" = {
591                         key = "-E"
592                         order = 1
593                         set_if = "$ftp_escape_send$"
594                         description = "Enable usage of \n, \r, \t or \\ in send string. Default is nothing."
595                 }
596                 "-s" = {
597                         order = 2
598                         value = "$ftp_send$"
599                         description = "String to send to the server."
600                 }
601                 "-E_quit" = {
602                         key = "-E"
603                         order = 3
604                         set_if = "$ftp_escape_quit$"
605                         description = "Can use \n, \r, \t or \\ in quit string. Default is \r\n added to end of quit."
606                 }
607                 "-q" = {
608                         order = 4
609                         value = "$ftp_quit$"
610                         description = "String to send server to initiate a clean close of the connection."
611                 }
612                 "-r" = {
613                         value = "$ftp_refuse$"
614                         description = "Accept TCP refusals with states ok, warn, crit. Defaults to crit."
615                 }
616                 "-M" = {
617                         value = "$ftp_mismatch$"
618                         description = "Accept expected string mismatches with states ok, warn, crit. Defaults to warn."
619                 }
620                 "-j" = {
621                         set_if = "$ftp_jail$"
622                         description = "Hide output from TCP socket."
623                 }
624                 "-m" = {
625                         value = "$ftp_maxbytes$"
626                         description = "Close connection once more than this number of bytes are received."
627                 }
628                 "-d" = {
629                         value = "$ftp_delay$"
630                         description = "Seconds to wait between sending string and polling for response."
631                 }
632                 "-D" = {
633                         value = "$ftp_certificate$"
634                         description = "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) - seperated by comma."
635                 }
636                 "-S" = {
637                         set_if = "$ftp_ssl$"
638                         description = "Use SSL for the connection."
639                 }
640                 "-w" = {
641                         value = "$ftp_wtime$"
642                         description = "Response time to result in warning status (seconds)."
643                 }
644                 "-c" = {
645                         value = "$ftp_ctime$"
646                         description = "Response time to result in critical status (seconds)."
647                 }
648                 "-t" = {
649                         value = "$ftp_timeout$"
650                         description = "Seconds before connection times out. Defaults to 10."
651                 }
652                 "-4" = {
653                         set_if = "$ftp_ipv4$"
654                         description = "Use IPv4 connection"
655                 }
656                 "-6" = {
657                         set_if = "$ftp_ipv6$"
658                         description = "Use IPv6 connection"
659                 }
660         }
661
662         vars.ftp_address = "$check_address$"
663         vars.ftp_ssl = false
664         vars.ftp_refuse = "crit"
665         vars.ftp_mismatch = "warn"
666         vars.ftp_timeout = 10
667         vars.check_ipv4 = "$ftp_ipv4$"
668         vars.check_ipv6 = "$ftp_ipv6$"
669 }
670
671 object CheckCommand "smtp" {
672         import "ipv4-or-ipv6"
673
674         command = [ PluginDir + "/check_smtp" ]
675
676         arguments = {
677                 "-H" = {
678                         value = "$smtp_address$"
679                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
680                 }
681                 "-p" = {
682                         value = "$smtp_port$"
683                         description = "Port number (default: 25)"
684                 }
685                 "-f" = {
686                         value = "$smtp_mail_from$"
687                         description = "FROM-address to include in MAIL command, required by Exchange 2000"
688                 }
689                 "-e" = {
690                         value = "$smtp_expect$"
691                         description = "String to expect in first line of server response (default: '220')"
692                 }
693                 "-C" = {
694                         value = "$smtp_command$"
695                         description = "SMTP command"
696                 }
697                 "-R" = {
698                         value = "$smtp_response$"
699                         description = "Expected response to command (may be used repeatedly)"
700                 }
701                 "-F" = {
702                         value = "$smtp_helo_fqdn$"
703                         description = "FQDN used for HELO"
704                 }
705                 "-D" = {
706                         value = "$smtp_certificate_age$"
707                         description = "Minimum number of days a certificate has to be valid"
708                 }
709                 "-S" = {
710                         set_if = "$smtp_starttls$"
711                         description = "Use STARTTLS for the connection."
712                 }
713                 "-A" = {
714                         value = "$smtp_authtype$"
715                         description = "SMTP AUTH type to check (default none, only LOGIN supported)"
716                 }
717                 "-U" = {
718                         value = "$smtp_authuser$"
719                         description = "SMTP AUTH username"
720                 }
721                 "-P" = {
722                         value = "$smtp_authpass$"
723                         description = "SMTP AUTH password"
724                 }
725                 "-q" = {
726                         value = "$smtp_ignore_quit$"
727                         description = "Ignore failure when sending QUIT command to server"
728                 }
729                 "-w" = {
730                         value = "$smtp_warning$"
731                         description = "Response time to result in warning status (seconds)"
732                 }
733                 "-c" = {
734                         value = "$smtp_critical$"
735                         description = "Response time to result in critical status (seconds)"
736                 }
737                 "-t" = {
738                         value = "$smtp_timeout$"
739                         description = "Seconds before connection times out (default: 10)"
740                 }
741                 "-4" = {
742                         set_if = "$smtp_ipv4$"
743                         description = "Use IPv4 connection"
744                 }
745                 "-6" = {
746                         set_if = "$smtp_ipv6$"
747                         description = "Use IPv6 connection"
748                 }
749         }
750
751         vars.smtp_address = "$check_address$"
752         vars.check_ipv4 = "$smtp_ipv4$"
753         vars.check_ipv6 = "$smtp_ipv6$"
754 }
755
756 object CheckCommand "ssmtp" {
757         import "ipv4-or-ipv6"
758
759         command = [ PluginDir + "/check_ssmtp" ]
760
761         arguments = {
762                 "-H" = {
763                         value = "$ssmtp_address$"
764                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
765                 }
766                 "-p" = {
767                         value = "$ssmtp_port$"
768                         description = "Port number (default: none)"
769                 }
770                 "-E" = {
771                         value = "$ssmtp_escape$"
772                         description = "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"
773                 }
774                 "-s" = {
775                         value = "$ssmtp_send$"
776                         description = "String to send to the server"
777                 }
778                 "-e" = {
779                         value = "$ssmtp_expect$"
780                         description = "String to expect in server response (may be repeated)"
781                 }
782                 "-A" = {
783                         set_if = "$ssmtp_all$"
784                         description = "All expect strings need to occur in server response. Default is any."
785                 }
786                 "-q" = {
787                         value = "$ssmtp_quit$"
788                         description = "String to send server to initiate a clean close of the connection"
789                 }
790                 "-r" = {
791                         value = "$ssmtp_refuse$"
792                         description = "Accept TCP refusals with states ok, warn, crit (default: crit)"
793                 }
794                 "-M" = {
795                         value = "$ssmtp_mismatch$"
796                         description = "Accept expected string mismatches with states ok, warn, crit (default: warn)"
797                 }
798                 "-j" = {
799                         set_if = "$ssmtp_jail$"
800                         description = "Hide output from TCP socket."
801                 }
802                 "-m" = {
803                         value = "$ssmtp_maxbytes$"
804                         description = "Close connection once more than this number of bytes are received"
805                 }
806                 "-d" = {
807                         value = "$ssmtp_delay$"
808                         description = "Seconds to wait between sending string and polling for response"
809                 }
810                 "-D" = {
811                         value = "$ssmtp_certificate_age$"
812                         description = "Minimum number of days a certificate has to be valid"
813                 }
814                 "-S" = {
815                         set_if = "$ssmtp_ssl$"
816                         description = "Use SSL for the connection."
817                 }
818                 "-w" = {
819                         value = "$ssmtp_warning$"
820                         description = "Response time to result in warning status (seconds)"
821                 }
822                 "-c" = {
823                         value = "$ssmtp_critical$"
824                         description = "Response time to result in critical status (seconds)"
825                 }
826                 "-t" = {
827                         value = "$ssmtp_timeout$"
828                         description = "Seconds before connection times out (default: 10)"
829                 }
830                 "-4" = {
831                         set_if = "$ssmtp_ipv4$"
832                         description = "Use IPv4 connection"
833                 }
834                 "-6" = {
835                         set_if = "$ssmtp_ipv6$"
836                         description = "Use IPv6 connection"
837                 }
838         }
839
840         vars.ssmtp_address = "$check_address$"
841         vars.check_ipv4 = "$ssmtp_ipv4$"
842         vars.check_ipv6 = "$ssmtp_ipv6$"
843 }
844
845 object CheckCommand "imap" {
846         import "ipv4-or-ipv6"
847
848         command = [ PluginDir + "/check_imap" ]
849
850         arguments = {
851                 "-H" = {
852                         value = "$imap_address$"
853                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
854                 }
855                 "-p" = {
856                         value = "$imap_port$"
857                         description = "Port number (default: none)"
858                 }
859                 "-E" = {
860                         value = "$imap_escape$"
861                         description = "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"
862                 }
863                 "-s" = {
864                         value = "$imap_send$"
865                         description = "String to send to the server"
866                 }
867                 "-e" = {
868                         value = "$imap_expect$"
869                         description = "String to expect in server response (may be repeated)"
870                 }
871                 "-A" = {
872                         set_if = "$imap_all$"
873                         description = "All expect strings need to occur in server response. Default is any."
874                 }
875                 "-q" = {
876                         value = "$imap_quit$"
877                         description = "String to send server to initiate a clean close of the connection"
878                 }
879                 "-r" = {
880                         value = "$imap_refuse$"
881                         description = "Accept TCP refusals with states ok, warn, crit (default: crit)"
882                 }
883                 "-M" = {
884                         value = "$imap_mismatch$"
885                         description = "Accept expected string mismatches with states ok, warn, crit (default: warn)"
886                 }
887                 "-j" = {
888                         set_if = "$imap_jail$"
889                         description = "Hide output from TCP socket."
890                 }
891                 "-m" = {
892                         value = "$imap_maxbytes$"
893                         description = "Close connection once more than this number of bytes are received"
894                 }
895                 "-d" = {
896                         value = "$imap_delay$"
897                         description = "Seconds to wait between sending string and polling for response"
898                 }
899                 "-D" = {
900                         value = "$imap_certificate_age$"
901                         description = "Minimum number of days a certificate has to be valid"
902                 }
903                 "-S" = {
904                         set_if = "$imap_ssl$"
905                         description = "Use SSL for the connection."
906                 }
907                 "-w" = {
908                         value = "$imap_warning$"
909                         description = "Response time to result in warning status (seconds)"
910                 }
911                 "-c" = {
912                         value = "$imap_critical$"
913                         description = "Response time to result in critical status (seconds)"
914                 }
915                 "-t" = {
916                         value = "$imap_timeout$"
917                         description = "Seconds before connection times out (default: 10)"
918                 }
919                 "-4" = {
920                         set_if = "$imap_ipv4$"
921                         description = "Use IPv4 connection"
922                 }
923                 "-6" = {
924                         set_if = "$imap_ipv6$"
925                         description = "Use IPv6 connection"
926                 }
927         }
928
929         vars.imap_address = "$check_address$"
930         vars.check_ipv4 = "$imap_ipv4$"
931         vars.check_ipv6 = "$imap_ipv6$"
932 }
933
934 object CheckCommand "simap" {
935         import "ipv4-or-ipv6"
936
937         command = [ PluginDir + "/check_simap" ]
938
939         arguments = {
940                 "-H" = {
941                         value = "$simap_address$"
942                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
943                 }
944                 "-p" = {
945                         value = "$simap_port$"
946                         description = "Port number (default: none)"
947                 }
948                 "-E" = {
949                         value = "$simap_escape$"
950                         description = "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"
951                 }
952                 "-s" = {
953                         value = "$simap_send$"
954                         description = "String to send to the server"
955                 }
956                 "-e" = {
957                         value = "$simap_expect$"
958                         description = "String to expect in server response (may be repeated)"
959                 }
960                 "-A" = {
961                         set_if = "$simap_all$"
962                         description = "All expect strings need to occur in server response. Default is any."
963                 }
964                 "-q" = {
965                         value = "$simap_quit$"
966                         description = "String to send server to initiate a clean close of the connection"
967                 }
968                 "-r" = {
969                         value = "$simap_refuse$"
970                         description = "Accept TCP refusals with states ok, warn, crit (default: crit)"
971                 }
972                 "-M" = {
973                         value = "$simap_mismatch$"
974                         description = "Accept expected string mismatches with states ok, warn, crit (default: warn)"
975                         }
976                 "-j" = {
977                         set_if = "$simap_jail$"
978                         description = "Hide output from TCP socket."
979                 }
980                 "-m" = {
981                         value = "$simap_maxbytes$"
982                         description = "Close connection once more than this number of bytes are received"
983                 }
984                 "-d" = {
985                         value = "$simap_delay$"
986                         description = "Seconds to wait between sending string and polling for response"
987                 }
988                 "-D" = {
989                         value = "$simap_certificate_age$"
990                         description = "Minimum number of days a certificate has to be valid"
991                 }
992                 "-S" = {
993                         set_if = "$simap_ssl$"
994                         description = "Use SSL for the connection."
995                 }
996                 "-w" = {
997                         value = "$simap_warning$"
998                         description = "Response time to result in warning status (seconds)"
999                 }
1000                 "-c" = {
1001                         value = "$simap_critical$"
1002                         description = "Response time to result in critical status (seconds)"
1003                 }
1004                 "-t" = {
1005                         value = "$simap_timeout$"
1006                         description = "Seconds before connection times out (default: 10)"
1007                 }
1008                 "-4" = {
1009                         set_if = "$simap_ipv4$"
1010                         description = "Use IPv4 connection"
1011                 }
1012                 "-6" = {
1013                         set_if = "$simap_ipv6$"
1014                         description = "Use IPv6 connection"
1015                 }
1016         }
1017
1018         vars.simap_address = "$check_address$"
1019         vars.check_ipv4 = "$simap_ipv4$"
1020         vars.check_ipv6 = "$simap_ipv6$"
1021 }
1022
1023 object CheckCommand "pop" {
1024         import "ipv4-or-ipv6"
1025
1026         command = [ PluginDir + "/check_pop" ]
1027
1028         arguments = {
1029                 "-H" = {
1030                         value = "$pop_address$"
1031                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
1032                 }
1033                 "-p" = {
1034                         value = "$pop_port$"
1035                         description = "Port number (default: none)"
1036                 }
1037                 "-E" = {
1038                         value = "$pop_escape$"
1039                         description = "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"
1040                 }
1041                 "-s" = {
1042                         value = "$pop_send$"
1043                         description = "String to send to the server"
1044                 }
1045                 "-e" = {
1046                         value = "$pop_expect$"
1047                         description = "String to expect in server response (may be repeated)"
1048                 }
1049                 "-A" = {
1050                         set_if = "$pop_all$"
1051                         description = "All expect strings need to occur in server response. Default is any."
1052                 }
1053                 "-q" = {
1054                         value = "$pop_quit$"
1055                         description = "String to send server to initiate a clean close of the connection"
1056                 }
1057                 "-r" = {
1058                         value = "$pop_refuse$"
1059                         description = "Accept TCP refusals with states ok, warn, crit (default: crit)"
1060                 }
1061                 "-M" = {
1062                         value = "$pop_mismatch$"
1063                         description = "Accept expected string mismatches with states ok, warn, crit (default: warn)"
1064                 }
1065                 "-j" = {
1066                         set_if = "$pop_jail$"
1067                         description = "Hide output from TCP socket."
1068                 }
1069                 "-m" = {
1070                         value = "$pop_maxbytes$"
1071                         description = "Close connection once more than this number of bytes are received"
1072                 }
1073                 "-d" = {
1074                         value = "$pop_delay$"
1075                         description = "Seconds to wait between sending string and polling for response"
1076                 }
1077                 "-D" = {
1078                         value = "$pop_certificate_age$"
1079                         description = "Minimum number of days a certificate has to be valid"
1080                 }
1081                 "-S" = {
1082                         set_if = "$pop_ssl$"
1083                         description = "Use SSL for the connection."
1084                 }
1085                 "-w" = {
1086                         value = "$pop_warning$"
1087                         description = "Response time to result in warning status (seconds)"
1088                 }
1089                 "-c" = {
1090                         value = "$pop_critical$"
1091                         description = "Response time to result in critical status (seconds)"
1092                 }
1093                 "-t" = {
1094                         value = "$pop_timeout$"
1095                         description = "Seconds before connection times out (default: 10)"
1096                 }
1097                 "-4" = {
1098                         set_if = "$pop_ipv4$"
1099                         description = "Use IPv4 connection"
1100                 }
1101                 "-6" = {
1102                         set_if = "$pop_ipv6$"
1103                         description = "Use IPv6 connection"
1104                 }
1105         }
1106
1107         vars.pop_address = "$check_address$"
1108         vars.check_ipv4 = "$pop_ipv4$"
1109         vars.check_ipv6 = "$pop_ipv6$"
1110 }
1111
1112 object CheckCommand "spop" {
1113         import "ipv4-or-ipv6"
1114
1115         command = [ PluginDir + "/check_spop" ]
1116
1117         arguments = {
1118                 "-H" = {
1119                         value = "$spop_address$"
1120                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
1121                 }
1122                 "-p" = {
1123                         value = "$spop_port$"
1124                         description = "Port number (default: none)"
1125                 }
1126                 "-E" = {
1127                         value = "$spop_escape$"
1128                         description = "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"
1129                 }
1130                 "-s" = {
1131                         value = "$spop_send$"
1132                         description = "String to send to the server"
1133                 }
1134                 "-e" = {
1135                         value = "$spop_expect$"
1136                         description = "String to expect in server response (may be repeated)"
1137                 }
1138                 "-A" = {
1139                         set_if = "$spop_all$"
1140                         description = "All expect strings need to occur in server response. Default is any."
1141                 }
1142                 "-q" = {
1143                         value = "$spop_quit$"
1144                         description = "String to send server to initiate a clean close of the connection"
1145                 }
1146                 "-r" = {
1147                         value = "$spop_refuse$"
1148                         description = "Accept TCP refusals with states ok, warn, crit (default: crit)"
1149                 }
1150                 "-M" = {
1151                         value = "$spop_mismatch$"
1152                         description = "Accept expected string mismatches with states ok, warn, crit (default: warn)"
1153                 }
1154                 "-j" = {
1155                         set_if = "$spop_jail$"
1156                         description = "Hide output from TCP socket."
1157                 }
1158                 "-m" = {
1159                         value = "$spop_maxbytes$"
1160                         description = "Close connection once more than this number of bytes are received"
1161                 }
1162                 "-d" = {
1163                         value = "$spop_delay$"
1164                         description = "Seconds to wait between sending string and polling for response"
1165                 }
1166                 "-D" = {
1167                         value = "$spop_certificate_age$"
1168                         description = "Minimum number of days a certificate has to be valid"
1169                 }
1170                 "-S" = {
1171                         set_if = "$spop_ssl$"
1172                         description = "Use SSL for the connection."
1173                 }
1174                 "-w" = {
1175                         value = "$spop_warning$"
1176                         description = "Response time to result in warning status (seconds)"
1177                 }
1178                 "-c" = {
1179                         value = "$spop_critical$"
1180                         description = "Response time to result in critical status (seconds)"
1181                 }
1182                 "-t" = {
1183                         value = "$spop_timeout$"
1184                         description = "Seconds before connection times out (default: 10)"
1185                 }
1186                 "-4" = {
1187                         set_if = "$spop_ipv4$"
1188                         description = "Use IPv4 connection"
1189                 }
1190                 "-6" = {
1191                         set_if = "$spop_ipv6$"
1192                         description = "Use IPv6 connection"
1193                 }
1194         }
1195
1196         vars.spop_address = "$check_address$"
1197         vars.check_ipv4 = "$spop_ipv4$"
1198         vars.check_ipv6 = "$spop_ipv6$"
1199 }
1200
1201 object CheckCommand "ntp_time" {
1202         import "ipv4-or-ipv6"
1203
1204         command = [ PluginDir + "/check_ntp_time" ]
1205
1206         arguments = {
1207                 "-H" = {
1208                         value = "$ntp_address$"
1209                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
1210                 }
1211                 "-p" = {
1212                         value = "$ntp_port$"
1213                         description = "Port number (default: 123)"
1214                 }
1215                 "-q" = {
1216                         set_if = "$ntp_quiet$"
1217                         description = "Returns UNKNOWN instead of CRITICAL if offset cannot be found"
1218                 }
1219                 "-w" = {
1220                         value = "$ntp_warning$"
1221                         description = "Offset to result in warning status (seconds)"
1222                 }
1223                 "-c" = {
1224                         value = "$ntp_critical$"
1225                         description = "Offset to result in critical status (seconds)"
1226                 }
1227                 "-o" = {
1228                         value = "$ntp_timeoffset$"
1229                         description = "Expected offset of the ntp server relative to local server (seconds)"
1230                 }
1231                 "-t" = {
1232                         value = "$ntp_timeout$"
1233                         description = "Seconds before connection times out (default: 10)"
1234                 }
1235                 "-4" = {
1236                         set_if = "$ntp_ipv4$"
1237                         description = "Use IPv4 connection"
1238                 }
1239                 "-6" = {
1240                         set_if = "$ntp_ipv6$"
1241                         description = "Use IPv6 connection"
1242                 }
1243         }
1244
1245         vars.ntp_address = "$check_address$"
1246         vars.check_ipv4 = "$ntp_ipv4$"
1247         vars.check_ipv6 = "$ntp_ipv6$"
1248 }
1249
1250 object CheckCommand "ntp_peer" {
1251         import "ipv4-or-ipv6"
1252
1253         command = [ PluginDir + "/check_ntp_peer" ]
1254
1255         arguments = {
1256                 "-H" = {
1257                         value = "$ntp_address$"
1258                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
1259                 }
1260                 "-p" = {
1261                         value = "$ntp_port$"
1262                         description = "Port number (default: 123)"
1263                 }
1264                 "-q" = {
1265                         set_if = "$ntp_quiet$"
1266                         description = "Returns UNKNOWN instead of CRITICAL or WARNING if server isn't synchronized"
1267                 }
1268                 "-w" = {
1269                         value = "$ntp_warning$"
1270                         description = "Offset to result in warning status (seconds)"
1271                 }
1272                 "-c" = {
1273                         value = "$ntp_critical$"
1274                         description = "Offset to result in critical status (seconds)"
1275                 }
1276                 "-W" = {
1277                         value = "$ntp_wstratum$"
1278                         description = "Warning threshold for stratum of server's synchronization peer"
1279                 }
1280                 "-C" = {
1281                         value = "$ntp_cstratum$"
1282                         description = "Critical threshold for stratum of server's synchronization peer"
1283                 }
1284                 "-j" = {
1285                         value = "$ntp_wjitter$"
1286                         description = "Warning threshold for jitter"
1287                 }
1288                 "-k" = {
1289                         value = "$ntp_cjitter$"
1290                         description = "Critical threshold for jitter"
1291                 }
1292                 "-m" = {
1293                         value = "$ntp_wsource$"
1294                         description = "Warning threshold for number of usable time sources (truechimers)"
1295                 }
1296                 "-n" = {
1297                         value = "$ntp_csource$"
1298                         description = "Critical threshold for number of usable time sources (truechimers)"
1299                 }
1300                 "-t" = {
1301                         value = "$ntp_timeout$"
1302                         description = "Seconds before connection times out (default: 10)"
1303                 }
1304                 "-4" = {
1305                         set_if = "$ntp_ipv4$"
1306                         description = "Use IPv4 connection"
1307                 }
1308                 "-6" = {
1309                         set_if = "$ntp_ipv6$"
1310                         description = "Use IPv6 connection"
1311                 }
1312         }
1313
1314         vars.ntp_address = "$check_address$"
1315         vars.check_ipv4 = "$ntp_ipv4$"
1316         vars.check_ipv6 = "$ntp_ipv6$"
1317 }
1318
1319 object CheckCommand "ssh" {
1320         import "ipv4-or-ipv6"
1321
1322         command = [ PluginDir + "/check_ssh" ]
1323
1324         arguments = {
1325                 "-p" = {
1326                         value = "$ssh_port$"
1327                         description = "Port number (default: 22)"
1328                 }
1329                 "-t" = {
1330                         value = "$ssh_timeout$"
1331                         description = "Seconds before connection times out (default: 10)"
1332                 }
1333                 "host" = {
1334                         value = "$ssh_address$"
1335                         skip_key = true
1336                         order = 1
1337                 }
1338                 "-4" = {
1339                         set_if = "$ssh_ipv4$"
1340                         description = "Use IPv4 connection"
1341                 }
1342                 "-6" = {
1343                         set_if = "$ssh_ipv6$"
1344                         description = "Use IPv6 connection"
1345                 }
1346         }
1347
1348         vars.ssh_address = "$check_address$"
1349         vars.check_ipv4 = "$ssh_ipv4$"
1350         vars.check_ipv6 = "$ssh_ipv6$"
1351 }
1352
1353 object CheckCommand "disk" {
1354         command = [ PluginDir + "/check_disk" ]
1355
1356         arguments = {
1357                 "-w" = {
1358                         value = "$disk_wfree$"
1359                         description = "Exit with WARNING status if less than INTEGER units of disk are free or Exit with WARNING status if less than PERCENT of disk space is free"
1360                         required = true
1361                         order = -3
1362                 }
1363                 "-c" = {
1364                         value = "$disk_cfree$"
1365                         description = "Exit with CRITICAL status if less than INTEGER units of disk are free or Exit with CRITCAL status if less than PERCENT of disk space is free"
1366                         required = true
1367                         order = -3
1368                 }
1369                 "-W" = {
1370                         value = "$disk_inode_wfree$"
1371                         description = "Exit with WARNING status if less than PERCENT of inode space is free"
1372                         order = -3
1373                 }
1374                 "-K" = {
1375                         value = "$disk_inode_cfree$"
1376                         description = "Exit with CRITICAL status if less than PERCENT of inode space is free"
1377                         order = -3
1378                 }
1379                 "-p" = {
1380                         value = "$disk_partitions$"
1381                         description = "Path or partition (may be repeated)"
1382                         repeat_key = true
1383                         order = 1
1384                 }
1385                 "-p_old" = {
1386                         key = "-p"
1387                         value = "$disk_partition$"
1388                         order = 1
1389                 }
1390                 "-x" = {
1391                         value = "$disk_partitions_excluded$"
1392                         description = "Ignore device (only works if -p unspecified)"
1393                 }
1394                 "-x_old" = {
1395                         key = "-x"
1396                         value = "$disk_partition_excluded$"
1397                 }
1398                 "-C" = {
1399                         set_if = "$disk_clear$"
1400                         description = "Clear thresholds"
1401                 }
1402                 "-E" = {
1403                         set_if = "$disk_exact_match$"
1404                         description = "For paths or partitions specified with -p, only check for exact paths"
1405                 }
1406                 "-e" = {
1407                         set_if = "$disk_errors_only$"
1408                         description = "Display only devices/mountpoints with errors"
1409                 }
1410                 "-f" = {
1411                         set_if = "$disk_ignore_reserved$"
1412                         description = "Don't account root-reserved blocks into freespace in perfdata"
1413                 }
1414                 "-g" = {
1415                         value = "$disk_group$"
1416                         description = "Group paths. Thresholds apply to (free-)space of all partitions together"
1417                 }
1418                 "-k" = {
1419                         set_if = "$disk_kilobytes$"
1420                         description = "Same as --units kB"
1421                 }
1422                 "-l" = {
1423                         set_if = "$disk_local$"
1424                         description = " Only check local filesystems"
1425                 }
1426                 "-L" = {
1427                         set_if = "$disk_stat_remote_fs$"
1428                         description = "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)"
1429                 }
1430                 "-M" = {
1431                         set_if = "$disk_mountpoint$"
1432                         description = "Display the mountpoint instead of the partition"
1433                 }
1434                 "-m" = {
1435                         set_if = "$disk_megabytes$"
1436                         description = "Same as --units MB"
1437                 }
1438                 "-A" = {
1439                         set_if = "$disk_all$"
1440                         description = "Explicitly select all paths. This is equivalent to -R .*"
1441                         order = 1
1442                 }
1443                 "-R" = {
1444                         value = "$disk_eregi_path$"
1445                         description = "Case insensitive regular expression for path/partition (may be repeated)"
1446                         repeat_key = true
1447                 }
1448                 "-r" = {
1449                         value = "$disk_ereg_path$"
1450                         description = "Regular expression for path or partition (may be repeated)"
1451                         repeat_key = true
1452                 }
1453                 "-I" = {
1454                         value = "$disk_ignore_eregi_path$"
1455                         description = "Regular expression to ignore selected path/partition (case insensitive) (may be repeated)"
1456                         repeat_key = true
1457                         order = 2
1458                 }
1459                 "-i" = {
1460                         value = "$disk_ignore_ereg_path$"
1461                         description = "Regular expression to ignore selected path or partition (may be repeated)"
1462                         repeat_key = true
1463                         order = 2
1464                 }
1465                 "-t" = {
1466                         value = "$disk_timeout$"
1467                         description = "Seconds before connection times out (default: 10)"
1468                 }
1469                 "-u" = {
1470                         value = "$disk_units$"
1471                         description = "Choose bytes, kB, MB, GB, TB (default: MB)"
1472                 }
1473                 "-X" = {
1474                         value = "$disk_exclude_type$"
1475                         description = "Ignore all filesystems of indicated type (may be repeated)"
1476                         repeat_key = true
1477                 }
1478         }
1479
1480         vars.disk_wfree = "20%"
1481         vars.disk_cfree = "10%"
1482         vars.disk_megabytes = true
1483         vars.disk_exclude_type = [
1484                 "none",
1485                 "tmpfs",
1486                 "sysfs",
1487                 "proc",
1488                 "configfs",
1489                 "devtmpfs",
1490                 "devfs",
1491                 "mtmfs",
1492                 "tracefs",
1493                 "cgroup",
1494                 "fuse.gvfsd-fuse",
1495                 "fuse.gvfs-fuse-daemon",
1496                 "fdescfs",
1497                 "overlay",
1498                 "nsfs"
1499         ]
1500 }
1501
1502 object CheckCommand "disk_smb" {
1503         command = [ PluginDir + "/check_disk_smb" ]
1504
1505         arguments = {
1506                 "-H" = {
1507                         value = "$disk_smb_hostname$"
1508                         description = "NetBIOS name of the server."
1509                 }
1510                 "-s" = {
1511                         value = "$disk_smb_share$"
1512                         description = "Share name to be tested."
1513                 }
1514                 "-W" = {
1515                         value = "$disk_smb_workgroup$"
1516                         description = "Workgroup or Domain used (Defaults to 'WORKGROUP' if omitted)."
1517                 }
1518                 "-a" = {
1519                         value = "$disk_smb_address$"
1520                         description = "IP-address of HOST (only necessary if HOST is in another network)."
1521                 }
1522                 "-u" = {
1523                         value = "$disk_smb_username$"
1524                         description = "Username to log in to server. (Defaults to 'guest' if omitted)."
1525                 }
1526                 "-p" = {
1527                         value = "$disk_smb_password$"
1528                         description = "Password to log in to server. (Defaults to an empty password if omitted)."
1529                 }
1530                 "-w" = {
1531                         value = "$disk_smb_wused$"
1532                         description = "Percent of used space at which a warning will be generated (Default: 85%)."
1533                 }
1534                 "-c" = {
1535                         value = "$disk_smb_cused$"
1536                         description = "Percent of used space at which a critical will be generated (Defaults: 95%)"
1537                 }
1538                 "-P" = {
1539                         value = "$disk_smb_port$"
1540                         description = "Port to be used to connect to. Some Windows boxes use 139, others 445 (Defaults to smbclient default if omitted)."
1541                 }
1542         }
1543
1544         vars.disk_smb_wused = "85%"
1545         vars.disk_smb_cused = "95%"
1546 }
1547
1548 object CheckCommand "users" {
1549         command = [ PluginDir + "/check_users" ]
1550
1551         arguments = {
1552                 "-w" = {
1553                         value = "$users_wgreater$"
1554                         description = "Set WARNING status if more than INTEGER users are logged in"
1555                 }
1556                 "-c" = {
1557                         value = "$users_cgreater$"
1558                         description = "Set CRITICAL status if more than INTEGER users are logged in"
1559                 }
1560         }
1561
1562         vars.users_wgreater = 20
1563         vars.users_cgreater = 50
1564 }
1565
1566 object CheckCommand "procs" {
1567         command = [ PluginDir + "/check_procs" ]
1568
1569         arguments = {
1570                 "-w" = {
1571                         value = "$procs_warning$"
1572                         description = "Generate warning state if metric is outside this range"
1573                 }
1574                 "-c" = {
1575                         value = "$procs_critical$"
1576                         description = "Generate critical state if metric is outside this range"
1577                 }
1578                 "-m" = {
1579                         value = "$procs_metric$"
1580                         description = "Check thresholds against metric"
1581                 }
1582                 "-t" = {
1583                         value = "$procs_timeout$"
1584                         description = "Seconds before plugin times out"
1585                 }
1586                 "-T" = {
1587                         set_if = "$procs_traditional$"
1588                         description = "Filter own process the traditional way by PID instead of /proc/pid/exe"
1589                 }
1590                 "-s" = {
1591                         value = "$procs_state$"
1592                         description = "Only scan for processes that have one or more of the status flags you specify"
1593                 }
1594                 "-p" = {
1595                         value = "$procs_ppid$"
1596                         description = "Only scan for children of the parent process ID indicated"
1597                 }
1598                 "-z" = {
1599                         value = "$procs_vsz$"
1600                         description = "Only scan for processes with VSZ higher than indicated"
1601                 }
1602                 "-r" = {
1603                         value = "$procs_rss$"
1604                         description = "Only scan for processes with RSS higher than indicated"
1605                 }
1606                 "-P" = {
1607                         value = "$procs_pcpu$"
1608                         description = "Only scan for processes with PCPU higher than indicated"
1609                 }
1610                 "-u" = {
1611                         value = "$procs_user$"
1612                         description = "Only scan for processes with user name or ID indicated"
1613                 }
1614                 "-a" = {
1615                         value = "$procs_argument$"
1616                         description = "Only scan for processes with args that contain STRING"
1617                 }
1618                 "--ereg-argument-array" = {
1619                         value = "$procs_argument_regex$"
1620                         description = "Only scan for processes with args that contain the regex STRING"
1621                 }
1622                 "-C" = {
1623                         value = "$procs_command$"
1624                         description = "Only scan for exact matches of COMMAND (without path)"
1625                 }
1626                 "-k" = {
1627                         set_if = "$procs_nokthreads$"
1628                         description = "Only scan for non kernel threads"
1629                 }
1630         }
1631
1632         vars.procs_traditional = false
1633         vars.procs_nokthreads = false
1634         vars.procs_warning = 250
1635         vars.procs_critical = 400
1636 }
1637
1638 object CheckCommand "swap" {
1639         command = [ PluginDir + "/check_swap" ]
1640
1641         arguments = {
1642                 "-w" = {{
1643                         if (macro("$swap_integer$")) {
1644                                 return macro("$swap_wfree$")
1645                         } else {
1646                                 return macro("$swap_wfree$%")
1647                         }
1648                 }}
1649                 "-c" = {{
1650                         if (macro("$swap_integer$")) {
1651                                 return macro("$swap_cfree$")
1652                         } else {
1653                                 return macro("$swap_cfree$%")
1654                         }
1655                 }}
1656                 "-a" = {
1657                         set_if = "$swap_allswaps$"
1658                         description = "Conduct comparisons for all swap partitions, one by one"
1659                 }
1660                 "-n" = {
1661                         value = "$swap_noswap$"
1662                         description = "Resulting state when there is no swap regardless of thresholds. Possible values are \"ok\", \"warning\", \"critical\", \"unknown\". Defaults to \"critical\""
1663                 }
1664         }
1665
1666         vars.swap_wfree = 50
1667         vars.swap_cfree = 25
1668         vars.swap_integer = false
1669         vars.swap_allswaps = false
1670 }
1671
1672 object CheckCommand "load" {
1673         command = [ PluginDir + "/check_load" ]
1674
1675         arguments = {
1676                 "-w" = {
1677                         value = "$load_wload1$,$load_wload5$,$load_wload15$"
1678                         description = "Exit with WARNING status if load average exceeds WLOADn"
1679                 }
1680                 "-c" = {
1681                         value = "$load_cload1$,$load_cload5$,$load_cload15$"
1682                         description = "Exit with CRITICAL status if load average exceed CLOADn; the load average format is the same used by 'uptime' and 'w'"
1683                 }
1684                 "-r" = {
1685                         set_if = "$load_percpu$"
1686                         description = "Divide the load averages by the number of CPUs (when possible)"
1687                 }
1688         }
1689
1690         vars.load_wload1 = 5.0
1691         vars.load_wload5 = 4.0
1692         vars.load_wload15 = 3.0
1693
1694         vars.load_cload1 = 10.0
1695         vars.load_cload5 = 6.0
1696         vars.load_cload15 = 4.0
1697
1698         vars.load_percpu = false
1699 }
1700
1701 object CheckCommand "snmp" {
1702         command = [ PluginDir + "/check_snmp" ]
1703
1704         arguments = {
1705                 "-H" = {
1706                         value = "$snmp_address$"
1707                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
1708                 }
1709                 "-o" = {
1710                         value = "$snmp_oid$"
1711                         description = "Object identifier(s) or SNMP variables whose value you wish to query"
1712                 }
1713                 "-C" = {
1714                         value = "$snmp_community$"
1715                         description = "Optional community string for SNMP communication (default is 'public')"
1716                 }
1717                 "-c" = {
1718                         value = "$snmp_crit$"
1719                         description = "Critical threshold range(s)"
1720                 }
1721                 "-w" = {
1722                         value = "$snmp_warn$"
1723                         description = "Warning threshold range(s)"
1724                 }
1725                 "-s" = {
1726                         value = "$snmp_string$"
1727                         description = "Return OK state (for that OID) if STRING is an exact match"
1728                 }
1729                 "-r" = {
1730                         value = "$snmp_ereg$"
1731                         description = "Return OK state (for that OID) if extended regular expression REGEX matches"
1732                 }
1733                 "-R" = {
1734                         value = "$snmp_eregi$"
1735                         description = "Return OK state (for that OID) if case-insensitive extended REGEX matches"
1736                 }
1737                 "-l" = {
1738                         value = "$snmp_label$"
1739                         description = "Prefix label for output from plugin"
1740                 }
1741                 "-u" = {
1742                         value = "$snmp_units$"
1743                         description = "Units label(s) for output data (e.g., 'sec.')"
1744                 }
1745                 "-t" = {
1746                         value = "$snmp_timeout$"
1747                         description = "Seconds before connection times out (default: 10)"
1748                 }
1749                 "-p" = {
1750                         value = "$snmp_port$"
1751                         description = "Port number (default: 161)"
1752                 }
1753                 "-e" = {
1754                         value = "$snmp_retries$"
1755                         description = "Number of retries to be used in the requests"
1756                 }
1757                 "--invert-search" = {
1758                         set_if = "$snmp_invert_search$"
1759                         description = "Invert search result and return CRITICAL if found"
1760                 }
1761                 "-P" = {
1762                         value = "$snmp_version$"
1763                         description = "SNMP protocol version"
1764                 }
1765                 "-m" = {
1766                         value = "$snmp_miblist$"
1767                         description = "List of MIBS to be loaded (default = none if using numeric OIDs or 'ALL' for symbolic OIDs.)"
1768                 }
1769                 "--rate-multiplier" = {
1770                         value = "$snmp_rate_multiplier$"
1771                         description = "Converts rate per second. For example, set to 60 to convert to per minute"
1772                 }
1773                 "--rate" = {
1774                         set_if = "$snmp_rate$"
1775                         description = "Enable rate calculation"
1776                 }
1777                 "-n" = {
1778                         set_if = "$snmp_getnext$"
1779                         description = "Use SNMP GETNEXT instead of SNMP GET"
1780                 }
1781                 "--offset" = {
1782                         value = "$snmp_offset$"
1783                         description = "Add/substract the specified OFFSET to numeric sensor data"
1784                 }
1785                 "-D" = {
1786                         value = "$snmp_output_delimiter$"
1787                         description = "Separates output on multiple OID requests"
1788                 }
1789                 "-O" = {
1790                         set_if = "$snmp_perf_oids$"
1791                         description = "Label performance data with OIDs instead of --label's"
1792                 }
1793         }
1794
1795         vars.snmp_address = {{
1796                 var addr_v4 = macro("$address$")
1797                 var addr_v6 = macro("$address6$")
1798
1799                 if (addr_v4) {
1800                         return addr_v4
1801                 } else {
1802                         return "udp6:[" + addr_v6 + "]"
1803                 }
1804         }}
1805
1806         vars.snmp_community = "public"
1807         vars.snmp_invert_search = false
1808         vars.snmp_timeout = "10"
1809 }
1810
1811 object CheckCommand "snmpv3" {
1812         import "ipv4-or-ipv6"
1813
1814         command = [ PluginDir + "/check_snmp" ]
1815
1816         arguments = {
1817                 "-H" = {
1818                         value = "$snmpv3_address$"
1819                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
1820                 }
1821                 "-p" = {
1822                         value = "$snmpv3_port$"
1823                         description = "Port number"
1824                 }
1825                 "-n" = {
1826                         set_if = "$snmpv3_getnext$"
1827                         description = "Use SNMP GETNEXT instead of SNMP GET"
1828                 }
1829                 "-P" = {
1830                         value = 3
1831                         description = "SNMP protocol version"
1832                 }
1833                 "-L" = {
1834                         value = "$snmpv3_seclevel$"
1835                         description = "SNMPv3 securityLevel"
1836                 }
1837                 "-a" = {
1838                         value = "$snmpv3_auth_alg$"
1839                         description = "SNMPv3 auth proto"
1840                 }
1841                 "-U" = {
1842                         value = "$snmpv3_user$"
1843                         description = "SNMPv3 username"
1844                 }
1845                 "-A" = {
1846                         value = "$snmpv3_auth_key$"
1847                         description = "SNMPv3 authentication password"
1848                 }
1849                 "-X" = {
1850                         value = "$snmpv3_priv_key$"
1851                         description = "SNMPv3 privacy password"
1852                 }
1853                 "-o" = {
1854                         value = "$snmpv3_oid$"
1855                         description = "Object identifier(s) or SNMP variables whose value you wish to query"
1856                 }
1857                 "-x" = {
1858                         value = "$snmpv3_priv_alg$"
1859                         description = "SNMPv3 priv proto (default DES)"
1860                 }
1861                 "-w" = {
1862                         value = "$snmpv3_warn$"
1863                         description = "Warning threshold range(s)"
1864                 }
1865                 "-c" = {
1866                         value = "$snmpv3_crit$"
1867                         description = "Critical threshold range(s)"
1868                 }
1869                 "-s" = {
1870                         value = "$snmpv3_string$"
1871                         description = "Return OK state (for that OID) if STRING is an exact match"
1872                 }
1873                 "-r" = {
1874                         value = "$snmpv3_ereg$"
1875                         description = "Return OK state (for that OID) if extended regular expression REGEX matches"
1876                 }
1877                 "-R" = {
1878                         value = "$snmpv3_eregi$"
1879                         description = "Return OK state (for that OID) if case-insensitive extended REGEX matches"
1880                 }
1881                 "--invert-search" = {
1882                         set_if = "$snmpv3_invert_search$"
1883                         description = "Invert search result and return CRITICAL if found"
1884                 }
1885                 "-l" = {
1886                         value = "$snmpv3_label$"
1887                         description = "Prefix label for output from plugin"
1888                 }
1889                 "-m" = {
1890                         value = "$snmpv3_miblist$"
1891                         description = "List of SNMP MIBs for translating OIDs between numeric and textual representation"
1892                 }
1893                 "-u" = {
1894                         value = "$snmpv3_units$"
1895                         description = "Units label(s) for output data (e.g., 'sec.')"
1896                 }
1897                 "--rate-multiplier" = {
1898                         value = "$snmpv3_rate_multiplier$"
1899                         description = "Converts rate per second. For example, set to 60 to convert to per minute"
1900                 }
1901                 "--rate" = {
1902                         set_if = "$snmpv3_rate$"
1903                         description = "Enable rate calculation"
1904                 }
1905                 "-t" = {
1906                         value = "$snmpv3_timeout$"
1907                         description = "Seconds before connection times out (default: 10)"
1908                 }
1909         }
1910
1911         vars.snmpv3_address = "$check_address$"
1912         vars.snmpv3_auth_alg = "SHA"
1913         vars.snmpv3_priv_alg = "AES"
1914         vars.snmpv3_seclevel = "authPriv"
1915         vars.snmpv3_timeout = "10"
1916 }
1917
1918 object CheckCommand "snmp-uptime" {
1919         import "snmp"
1920
1921         vars.snmp_oid = "1.3.6.1.2.1.1.3.0"
1922 }
1923
1924 object CheckCommand "apt" {
1925         command = [ PluginDir + "/check_apt" ]
1926
1927         arguments = {
1928                 "--extra-opts" = {
1929                         value = "$apt_extra_opts$"
1930                         description = "Read options from an ini file."
1931                 }
1932                 "--upgrade" = {
1933                         value = "$apt_upgrade$"
1934                         description = "[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."
1935                 }
1936                 "--dist-upgrade" = {
1937                         value = "$apt_dist_upgrade$"
1938                         description = "Perform a dist-upgrade instead of normal upgrade. Like with -U OPTS can be provided to override the default options."
1939                 }
1940                 "--include" = {
1941                         value = "$apt_include$"
1942                         description = "Include only packages matching REGEXP. Can be specified multiple times the values will be combined together."
1943                 }
1944                 "--exclude" = {
1945                         value = "$apt_exclude$"
1946                         description = "Exclude packages matching REGEXP from the list of packages that would otherwise be included. Can be specified multiple times."
1947                 }
1948                 "--critical" = {
1949                         value = "$apt_critical$"
1950                         description = "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."
1951                 }
1952                 "--timeout" = {
1953                         value = "$apt_timeout$"
1954                         description = "Seconds before plugin times out (default: 10)."
1955                 }
1956                 "--only-critical" = {
1957                         set_if = "$apt_only_critical$"
1958                         description = "Only warn about critical upgrades."
1959                 }
1960         }
1961
1962         timeout = 5m
1963 }
1964
1965 object CheckCommand "dhcp" {
1966         command = [ PluginDir + "/check_dhcp" ]
1967
1968         arguments = {
1969                 "-s" = {
1970                         value = "$dhcp_serverip$"
1971                         description = "IP address of DHCP server that we must hear from"
1972                 }
1973                 "-r" = {
1974                         value = "$dhcp_requestedip$"
1975                         description = "IP address that should be offered by at least one DHCP server"
1976                 }
1977                 "-t" = {
1978                         value = "$dhcp_timeout$"
1979                         description = "Seconds to wait for DHCPOFFER before timeout occurs"
1980                 }
1981                 "-i" = {
1982                         value = "$dhcp_interface$"
1983                         description = "Interface to to use for listening (i.e. eth0)"
1984                 }
1985                 "-m" = {
1986                         value = "$dhcp_mac$"
1987                         description = "MAC address to use in the DHCP request"
1988                 }
1989                 "-u" = {
1990                         set_if = "$dhcp_unicast$"
1991                         description = "Unicast testing: mimic a DHCP relay"
1992                 }
1993         }
1994
1995         vars.dhcp_unicast = false
1996 }
1997
1998 object CheckCommand "dns" {
1999         import "ipv4-or-ipv6"
2000
2001         command = [ PluginDir + "/check_dns" ]
2002
2003         arguments = {
2004                 "-H" = {
2005                         value = "$dns_lookup$"
2006                         description = "The name or address you want to query."
2007                 }
2008                 "-s" = {
2009                         value = "$dns_server$"
2010                         description = "Optional DNS server you want to use for the lookup."
2011                 }
2012                 "-q" = {
2013                         value = "$dns_query_type$"
2014                         description = "Optional DNS record query type where TYPE =(A, AAAA, SRV, TXT, MX, ANY). The default query type is 'A' (IPv4 host entry)"
2015                 }
2016                 "-a" = {
2017                         value = "$dns_expected_answers$"
2018                         description = "Optional ip address or host you expect the DNS server to return. Host must end with a dot (.). This option can be repeated multiple times (Returns OK if any value match). If multiple addresses are returned at once, you have to match the whole string of addresses separated with commas (sorted alphabetically)."
2019                 }
2020                 "-A" = {
2021                         set_if = "$dns_authoritative$"
2022                         description = "Optionally expect the DNS server to be authoritative for the lookup"
2023                 }
2024                 "-n" = {
2025                         set_if = "$dns_accept_cname$"
2026                         description = "Optionally accept cname responses as a valid result to a query. The default is to ignore cname responses as part of the result"
2027                 }
2028                 "-w" = {
2029                         value = "$dns_wtime$"
2030                         description = "Return warning if elapsed time exceeds value."
2031                 }
2032                 "-c" = {
2033                         value = "$dns_ctime$"
2034                         description = "Return critical if elapsed time exceeds value."
2035                 }
2036                 "-t" = {
2037                         value = "$dns_timeout$"
2038                         description = "Seconds before connection times out. Defaults to 10."
2039                 }
2040         }
2041
2042         vars.dns_lookup = "$host.name$"
2043         vars.dns_timeout = 10
2044 }
2045
2046 object CheckCommand "dig" {
2047         import "ipv4-or-ipv6"
2048
2049         command = [ PluginDir + "/check_dig" ]
2050
2051         arguments = {
2052                 "-H" = {
2053                         value = "$dig_server$"
2054                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
2055                 }
2056                 "-p" = {
2057                         value = "$dig_port$"
2058                         description = "Port number (default: 53)"
2059                 }
2060                 "-l" = {
2061                         value = "$dig_lookup$"
2062                         required = true
2063                         description = "Machine name to lookup"
2064                 }
2065                 "-T" = {
2066                         value = "$dig_record_type$"
2067                         description = "Record type to lookup (default: A)"
2068                 }
2069                 "-a" = {
2070                         value = "$dig_expected_address$"
2071                         description = "An address expected to be in the answer section"
2072                 }
2073                 "-A" = {
2074                         value = "$dig_arguments$"
2075                         description = "Pass STRING as argument(s) to dig"
2076                 }
2077                 "-w" = {
2078                         value = "$dig_warning$"
2079                         description = "Response time to result in warning status (seconds)"
2080                 }
2081                 "-c" = {
2082                         value = "$dig_critical$"
2083                         description = "Response time to result in critical status (seconds)"
2084                 }
2085                 "-t" = {
2086                         value = "$dig_timeout$"
2087                         description = "Seconds before connection times out (default: 10)"
2088                 }
2089                 "-4" = {
2090                         set_if = "$dig_ipv4$"
2091                         description = "Force dig to only use IPv4 query transport"
2092                 }
2093                 "-6" = {
2094                         set_if = "$dig_ipv6$"
2095                         description = "Force dig to only use IPv6 query transport"
2096                 }
2097         }
2098
2099         vars.dig_server = "$check_address$"
2100         vars.check_ipv4 = "$dig_ipv4$"
2101         vars.check_ipv6 = "$dig_ipv6$"
2102 }
2103
2104 object CheckCommand "nscp" {
2105         import "ipv4-or-ipv6"
2106
2107         command = [ PluginDir + "/check_nt" ]
2108
2109         arguments = {
2110                 "-H" = {
2111                         value = "$nscp_address$"
2112                         description = "Name of the host to check"
2113                 }
2114                 "-p" = {
2115                         value = "$nscp_port$"
2116                         description = "Optional port number (default: 1248)"
2117                 }
2118                 "-s" = {
2119                         value = "$nscp_password$"
2120                         description = "Password needed for the request"
2121                 }
2122                 "-v" = {
2123                         value = "$nscp_variable$"
2124                         required = true
2125                         description = "Variable to check"
2126                 }
2127                 "-l" = {
2128                         value = "$nscp_params$"
2129                         repeat_key = false
2130                 }
2131                 "-w" = {
2132                         value = "$nscp_warn$"
2133                         description = "Threshold which will result in a warning status"
2134                 }
2135                 "-c" = {
2136                         value = "$nscp_crit$"
2137                         description = "Threshold which will result in a critical status"
2138                 }
2139                 "-t" = {
2140                         value = "$nscp_timeout$"
2141                         description = "Seconds before connection attempt times out"
2142                 }
2143                 "-d" = {
2144                         value = "SHOWALL"
2145                         set_if = "$nscp_showall$"
2146                         description = "Use with SERVICESTATE to see working services or PROCSTATE for running processes"
2147                 }
2148         }
2149
2150         vars.nscp_address = "$check_address$"
2151         vars.nscp_port = 12489
2152         vars.nscp_showall = false
2153 }
2154
2155 object CheckCommand "by_ssh" {
2156         import "ipv4-or-ipv6"
2157
2158         command = [ PluginDir + "/check_by_ssh" ]
2159
2160         arguments = {
2161                 "-H" = {
2162                         value = "$by_ssh_address$"
2163                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
2164                 }
2165                 "-p" = {
2166                         value = "$by_ssh_port$"
2167                         description = "Port number (default: none)"
2168                 }
2169                 "-C" = {{
2170                         var command = macro("$by_ssh_command$")
2171                         var arguments = macro("$by_ssh_arguments$")
2172
2173                         if (typeof(command) == String && !arguments) {
2174                                 return command
2175                         }
2176
2177                         var escaped_args = []
2178                         for (arg in resolve_arguments(command, arguments)) {
2179                                 escaped_args.add(escape_shell_arg(arg))
2180                         }
2181                         return escaped_args.join(" ")
2182                 }}
2183                 "-l" = {
2184                         value = "$by_ssh_logname$"
2185                         description = "SSH user name on remote host [optional]"
2186                 }
2187                 "-i" = {
2188                         value = "$by_ssh_identity$"
2189                         description = "identity of an authorized key [optional]"
2190                 }
2191                 "-q" = {
2192                         set_if = "$by_ssh_quiet$"
2193                         description = "Tell ssh to suppress warning and diagnostic messages [optional]"
2194                 }
2195                 "-w" = {
2196                         value = "$by_ssh_warn$"
2197                         description = "Response time to result in warning status (seconds)"
2198                 }
2199                 "-c" = {
2200                         value = "$by_ssh_crit$"
2201                         description = "Response time to result in critical status (seconds)"
2202                 }
2203                 "-t" = {
2204                         value = "$by_ssh_timeout$"
2205                         description = "Seconds before connection times out (default: 10)"
2206                 }
2207                 "-o" = {
2208                         value = "$by_ssh_options$"
2209                         description = "Provide ssh options (may be repeated)"
2210                 }
2211                 "-4" = {
2212                         set_if = "$by_ssh_ipv4$"
2213                         description = "Use IPv4 only"
2214                 }
2215                 "-6" = {
2216                         set_if = "$by_ssh_ipv6$"
2217                         description = "Use IPv6 only"
2218                 }
2219                 "-E" = {
2220                         value = "$by_ssh_skip_stderr$"
2221                         description = "Ignore all or (if specified) first n lines on STDERR [optional]"
2222                 }
2223         }
2224
2225         vars.by_ssh_address = "$check_address$"
2226         vars.by_ssh_quiet = false
2227         vars.check_ipv4 = "$by_ssh_ipv4$"
2228         vars.check_ipv6 = "$by_ssh_ipv6$"
2229 }
2230
2231 object CheckCommand "ups" {
2232         import "ipv4-or-ipv6"
2233
2234         command = [ PluginDir + "/check_ups" ]
2235
2236         arguments = {
2237                 "-H" = {
2238                         value = "$ups_address$"
2239                         description = "Address of the upsd server"
2240                         required = true
2241                 }
2242                 "-u" = {
2243                         value = "$ups_name$"
2244                         description = "Name of the UPS to monitor"
2245                         required = true
2246                 }
2247                 "-p" = {
2248                         value = "$ups_port$"
2249                         description = "Port number (default: 3493)"
2250                 }
2251                 "-v" = {
2252                         value = "$ups_variable$"
2253                         description = "Variable to monitor, valid strings are LINE, TEMP, BATTPCT or LOADPCT"
2254                 }
2255                 "-w" = {
2256                         value = "$ups_warning$"
2257                         description = "Warning threshold for the selected variable"
2258                 }
2259                 "-c" = {
2260                         value = "$ups_critical$"
2261                         description = "Critical threshold for the selected variable"
2262                 }
2263                 "-T" = {
2264                         set_if = "$ups_celsius$"
2265                         description = "Display temperature in degrees Celsius instead of Fahrenheit"
2266                 }
2267                 "-t" = {
2268                         value = "$ups_timeout$"
2269                         description = "Seconds before the connection times out (default: 10)"
2270                 }
2271         }
2272
2273         vars.ups_address = "$check_address$"
2274         vars.ups_name = "ups"
2275 }
2276
2277 object CheckCommand "nrpe" {
2278         import "ipv4-or-ipv6"
2279
2280         command = [ PluginDir + "/check_nrpe" ]
2281
2282         arguments = {
2283                 "-H" = {
2284                         value = "$nrpe_address$"
2285                         description = "The address of the host running the NRPE daemon"
2286                 }
2287                 "-p" = {
2288                         value = "$nrpe_port$"
2289                 }
2290                 "-c" = {
2291                         value = "$nrpe_command$"
2292                 }
2293                 "-n" = {
2294                         set_if = "$nrpe_no_ssl$"
2295                         description = "Do not use SSL"
2296                 }
2297                 "-u" = {
2298                         set_if = "$nrpe_timeout_unknown$"
2299                         description = "Make socket timeouts return an UNKNOWN state instead of CRITICAL"
2300                 }
2301                 "-t" = {
2302                         value = "$nrpe_timeout$"
2303                         description = "<interval>:<state> = <Number of seconds before connection times out>:<Check state to exit with in the event of a timeout (default=CRITICAL)>"
2304                 }
2305                 "-a" = {
2306                         value = "$nrpe_arguments$"
2307                         repeat_key = false
2308                         order = 1
2309                 }
2310                 "-4" = {
2311                         set_if = "$nrpe_ipv4$"
2312                         description = "Use IPv4 connection"
2313                 }
2314                 "-6" = {
2315                         set_if = "$nrpe_ipv6$"
2316                         description = "Use IPv6 connection"
2317                 }
2318                 "-2" = {
2319                         set_if = "$nrpe_version_2$"
2320                         description = "Use this if you want to connect to NRPE v2"
2321                 }
2322         }
2323
2324         vars.nrpe_address = "$check_address$"
2325         vars.nrpe_no_ssl = false
2326         vars.nrpe_timeout_unknown = false
2327         vars.check_ipv4 = "$nrpe_ipv4$"
2328         vars.check_ipv6 = "$nrpe_ipv6$"
2329         vars.nrpe_version_2 = false
2330         timeout = 5m
2331 }
2332
2333 object CheckCommand "hpjd" {
2334         import "ipv4-or-ipv6"
2335
2336         command = [ PluginDir + "/check_hpjd" ]
2337
2338         arguments = {
2339                 "-H" = {
2340                         value = "$hpjd_address$"
2341                         description = "Host address"
2342                 }
2343                 "-C" = {
2344                         value = "$hpjd_community$"
2345                         description = "The SNMP community name (default=public)"
2346                 }
2347                 "-p" = {
2348                         value = "$hpjd_port$"
2349                         description = "Specify the port to check (default=161)"
2350                 }
2351         }
2352
2353         vars.hpjd_address = "$check_address$"
2354 }
2355
2356 object CheckCommand "icmp" {
2357         command = [ PluginDir + "/check_icmp" ]
2358
2359         arguments = {
2360                 "-H" = {
2361                         value = "$icmp_address$"
2362                         repeat_key = false
2363                         order = 1
2364                         description = "Host address"
2365                 }
2366                 "-w" = {
2367                         value = "$icmp_wrta$,$icmp_wpl$%"
2368                         description = "warning threshold (currently 200.000ms,40%)"
2369                 }
2370                 "-c" = {
2371                         value = "$icmp_crta$,$icmp_cpl$%"
2372                         description = "critical threshold (currently 500.000ms,80%)"
2373                 }
2374                 "-s" = {
2375                         value = "$icmp_source$"
2376                         description = "specify a source IP address or device name"
2377                 }
2378                 "-n" = {
2379                         value = "$icmp_packets$"
2380                         description = "number of packets to send (currently 5)"
2381                 }
2382                 "-i" = {
2383                         value = "$icmp_packet_interval$"
2384                         description = "max packet interval (currently 80.000ms)"
2385                 }
2386                 "-I" = {
2387                         value = "$icmp_target_interval$"
2388                         description = "max target interval (currently 0.000ms)"
2389                 }
2390                 "-m" = {
2391                         value = "$icmp_hosts_alive$"
2392                         description = "number of alive hosts required for success"
2393                 }
2394                 "-b" = {
2395                         value = "$icmp_data_bytes$"
2396                         description = "Number of icmp data bytes to send. Packet size will be data bytes + icmp header (currently 68 + 8)"
2397                 }
2398                 "-t" = {
2399                         value = "$icmp_timeout$"
2400                         description = "timeout value (seconds, currently  10)"
2401                 }
2402                 "-l" = {
2403                         value = "$icmp_ttl$"
2404                         description = "TTL on outgoing packets (currently 0)"
2405                 }
2406         }
2407
2408         vars.icmp_address = "$address$"
2409         vars.icmp_wrta = 100
2410         vars.icmp_wpl = 5
2411         vars.icmp_crta = 200
2412         vars.icmp_cpl = 15
2413 }
2414
2415 object CheckCommand "ldap" {
2416         import "ipv4-or-ipv6"
2417
2418         command = [ PluginDir + "/check_ldap" ]
2419
2420         arguments = {
2421                 "-H" = {
2422                         value = "$ldap_address$"
2423                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
2424                 }
2425                 "-p" = {
2426                         value = "$ldap_port$"
2427                         description = "Port number (default: 389)"
2428                 }
2429                 "-a" = {
2430                         value = "$ldap_attr$"
2431                         description = "ldap attribute to search (default: \"(objectclass=*)\""
2432                 }
2433                 "-b" = {
2434                         value = "$ldap_base$"
2435                         required = true
2436                         description = "ldap base (eg. ou=my unit, o=my org, c=at"
2437                 }
2438                 "-D" = {
2439                         value = "$ldap_bind$"
2440                         description = "ldap bind DN (if required)"
2441                 }
2442                 "-P" = {
2443                         value = "$ldap_pass$"
2444                         description = "ldap password (if required)"
2445                 }
2446                 "-T" = {
2447                         set_if = "$ldap_starttls$"
2448                         description = "use starttls mechanism introduced in protocol version 3"
2449                 }
2450                 "-S" = {
2451                         set_if = "$ldap_ssl$"
2452                         description = "use ldaps (ldap v2 ssl method). this also sets the default port to 636"
2453                 }
2454                 "-2" = {
2455                         set_if = "$ldap_v2$"
2456                         description = "Use LDAP protocol version 2"
2457                 }
2458                 "-3" = {
2459                         set_if = "$ldap_v3$"
2460                         description = "Use LDAP protocol version 3"
2461                 }
2462                 "-w" = {
2463                         value = "$ldap_warning$"
2464                         description = "Response time to result in warning status (seconds)"
2465                 }
2466                 "-c" = {
2467                         value = "$ldap_critical$"
2468                         description = "Response time to result in critical status (seconds)"
2469                 }
2470                 "-W" = {
2471                         value = "$ldap_warning_entries$"
2472                         description = "Number of found entries to result in warning status (optional)"
2473                 }
2474                 "-C" = {
2475                         value = "$ldap_critical_entries$"
2476                         description = "Number of found entries to result in critical status (optional)"
2477                 }
2478                 "-t" = {
2479                         value = "$ldap_timeout$"
2480                         description = "Seconds before connection times out (default: 10)"
2481                 }
2482                 "-v" = {
2483                         set_if = "$ldap_verbose$"
2484                         description = "Show details for command-line debugging"
2485                 }
2486         }
2487
2488         vars.ldap_address = "$check_address$"
2489         vars.ldap_v2 = true
2490         vars.ldap_v3 = false
2491         vars.ldap_timeout = 10s
2492         vars.ldap_verbose = false
2493 }
2494
2495 object CheckCommand "clamd" {
2496         command = [ PluginDir + "/check_clamd" ]
2497
2498         arguments = {
2499                 "-H" = {
2500                         value = "$clamd_address$"
2501                         description = "The host's address or unix socket (must be an absolute path)."
2502                         required = true
2503                 }
2504                 "-p" = {
2505                         value = "$clamd_port$"
2506                         description = "Port number (default: none)."
2507                 }
2508                 "-e" = {
2509                         value = "$clamd_expect$"
2510                         description = "String to expect in server response (may be repeated)."
2511                         repeat_key = true
2512                 }
2513                 "-A" = {
2514                         set_if = "$clamd_all$"
2515                         description = "All expect strings need to occur in server response. Default is any."
2516                 }
2517                 "-E_send" = {
2518                         key = "-E"
2519                         order = 1
2520                         set_if = "$clamd_escape_send$"
2521                         description = "Enable usage of \n, \r, \t or \\ in send string. Default is nothing."
2522                 }
2523                 "-s" = {
2524                         order = 2
2525                         value = "$clamd_send$"
2526                         description = "String to send to the server."
2527                 }
2528                 "-E_quit" = {
2529                         key = "-E"
2530                         order = 3
2531                         set_if = "$clamd_escape_quit$"
2532                         description = "Can use \n, \r, \t or \\ in quit string. Default is \r\n added to end of quit."
2533                 }
2534                 "-q" = {
2535                         order = 4
2536                         value = "$clamd_quit$"
2537                         description = "String to send server to initiate a clean close of the connection."
2538                 }
2539                 "-r" = {
2540                         value = "$clamd_refuse$"
2541                         description = "Accept TCP refusals with states ok, warn, crit. Defaults to crit."
2542                 }
2543                 "-M" = {
2544                         value = "$clamd_mismatch$"
2545                         description = "Accept expected string mismatches with states ok, warn, crit. Defaults to warn."
2546                 }
2547                 "-j" = {
2548                         set_if = "$clamd_jail$"
2549                         description = "Hide output from TCP socket."
2550                 }
2551                 "-m" = {
2552                         value = "$clamd_maxbytes$"
2553                         description = "Close connection once more than this number of bytes are received."
2554                 }
2555                 "-d" = {
2556                         value = "$clamd_delay$"
2557                         description = "Seconds to wait between sending string and polling for response."
2558                 }
2559                 "-D" = {
2560                         value = "$clamd_certificate$"
2561                         description = "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) - seperated by comma."
2562                 }
2563                 "-S" = {
2564                         set_if = "$clamd_ssl$"
2565                         description = "Use SSL for the connection."
2566                 }
2567                 "-w" = {
2568                         value = "$clamd_wtime$"
2569                         description = "Response time to result in warning status (seconds)."
2570                 }
2571                 "-c" = {
2572                         value = "$clamd_ctime$"
2573                         description = "Response time to result in critical status (seconds)."
2574                 }
2575                 "-t" = {
2576                         value = "$clamd_timeout$"
2577                         description = "Seconds before connection times out. Defaults to 10."
2578                 }
2579                 "-4" = {
2580                         set_if = "$clamd_ipv4$"
2581                         description = "Use IPv4 only"
2582                 }
2583                 "-6" = {
2584                         set_if = "$clamd_ipv6$"
2585                         description = "Use IPv6 only"
2586                 }
2587         }
2588
2589         vars.clamd_ssl = false
2590         vars.clamd_refuse = "crit"
2591         vars.clamd_mismatch = "warn"
2592         vars.clamd_timeout = 10
2593         vars.check_ipv4 = "$clamd_ipv4$"
2594         vars.check_ipv6 = "$clamd_ipv6$"
2595 }
2596
2597 object CheckCommand "mailq" {
2598         command = [ PluginDir + "/check_mailq" ]
2599
2600         arguments = {
2601                 "-w" = {
2602                         value = "$mailq_warning$"
2603                         description = "Min. number of messages in queue to generate warning"
2604                         required = true
2605                 }
2606                 "-c" = {
2607                         value = "$mailq_critical$"
2608                         description = "Min. number of messages in queue to generate critical alert ( w < c )"
2609                         required = true
2610                 }
2611                 "-W" = {
2612                         value = "$mailq_domain_warning$"
2613                         description = "Min. number of messages for same domain in queue to generate warning"
2614                 }
2615                 "-C" = {
2616                         value = "$mailq_domain_critical$"
2617                         description = "Min. number of messages for same domain in queue to generate critical alert ( W < C )"
2618                 }
2619                 "-t" = {
2620                         value = "$mailq_timeout$"
2621                         description = "Plugin timeout in seconds (default = 15)"
2622                 }
2623                 "-M" = {
2624                         value = "$mailq_servertype$"
2625                         description = "[ sendmail | qmail | postfix | exim | nullmailer ] (default = autodetect)"
2626                 }
2627                 "-s" = {
2628                         set_if = "$mailq_sudo$"
2629                         description = "Use sudo for mailq command"
2630                 }
2631         }
2632 }
2633
2634 object CheckCommand "pgsql" {
2635         import "ipv4-or-ipv6"
2636
2637         command = [ PluginDir + "/check_pgsql" ]
2638
2639         arguments = {
2640                 "-H" = {
2641                         value = "$pgsql_hostname$"
2642                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
2643                 }
2644                 "-P" = {
2645                         value = "$pgsql_port$"
2646                         description = "Port number (default: 5432)"
2647                 }
2648                 "-d" = {
2649                         value = "$pgsql_database$"
2650                         description = "Database to check (default: template1)"
2651                 }
2652                 "-l" = {
2653                         value = "$pgsql_username$"
2654                         description = "Login name of user"
2655                 }
2656                 "-p" = {
2657                         value = "$pgsql_password$"
2658                         description = "Password (BIG SECURITY ISSUE)"
2659                 }
2660                 "-o" = {
2661                         value = "$pgsql_options$"
2662                         description = "Connection parameters (keyword = value), see below"
2663                         }
2664                 "-w" = {
2665                         value = "$pgsql_warning$"
2666                         description = "Response time to result in warning status (seconds)"
2667                 }
2668                 "-c" = {
2669                         value = "$pgsql_critical$"
2670                         description = "Response time to result in critical status (seconds)"
2671                 }
2672                 "-t" = {
2673                         value = "$pgsql_timeout$"
2674                         description = "Seconds before connection times out (default: 10)"
2675                 }
2676                 "-q" = {
2677                         value = "$pgsql_query$"
2678                         description = "SQL query to run. Only first column in first row will be read"
2679                 }
2680                 "-W" = {
2681                         value = "$pgsql_query_warning$"
2682                         description = "SQL query value to result in warning status (double)"
2683                 }
2684                 "-C" = {
2685                         value = "$pgsql_query_critical$"
2686                         description = "SQL query value to result in critical status (double)"
2687                 }
2688         }
2689
2690         vars.pgsql_hostname = "$check_address$"
2691 }
2692
2693 object CheckCommand "mysql" {
2694         import "ipv4-or-ipv6"
2695
2696         command = [ PluginDir + "/check_mysql" ]
2697
2698         arguments = {
2699                 "-H" = {
2700                         value = "$mysql_hostname$"
2701                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
2702                 }
2703                 "-P" = {
2704                         value = "$mysql_port$"
2705                         description = "Port number (default: 3306)"
2706                 }
2707                 "-n" = {
2708                         set_if = "$mysql_ignore_auth$"
2709                         description = "Ignore authentication failure and check for mysql connectivity only"
2710                 }
2711                 "-s" = {
2712                         value = "$mysql_socket$"
2713                         description = "Use the specified socket"
2714                 }
2715                 "-d" = {
2716                         value = "$mysql_database$"
2717                         description = "Check database with indicated name"
2718                 }
2719                 "-f" = {
2720                         value = "$mysql_file$"
2721                         description = "Read from the specified client options file"
2722                 }
2723                 "-g" = {
2724                         value = "$mysql_group$"
2725                         description = "Use a client options group"
2726                 }
2727                 "-u" = {
2728                         value = "$mysql_username$"
2729                         description = "Connect using the indicated username"
2730                 }
2731                 "-p" = {
2732                         value = "$mysql_password$"
2733                         description = "Use the indicated password to authenticate the connection"
2734                 }
2735                 "-S" = {
2736                         set_if = "$mysql_check_slave$"
2737                         description = "Check if the slave thread is running properly"
2738                 }
2739                 "-w" = {
2740                         value = "$mysql_warning$"
2741                         description = "Exit with WARNING status if slave server is more than INTEGER seconds behind master"
2742                 }
2743                 "-c" = {
2744                         value = "$mysql_critical$"
2745                         description = "Exit with CRITICAL status if slave server is more then INTEGER seconds behind master"
2746                 }
2747                 "-l" = {
2748                         set_if = "$mysql_ssl$"
2749                         description = "Use ssl encryptation"
2750                 }
2751                 "-C" = {
2752                         value = "$mysql_cacert$"
2753                         description = "Path to CA signing the cert"
2754                 }
2755                 "-a" = {
2756                         value = "$mysql_cert$"
2757                         description = "Path to SSL certificate"
2758                 }
2759                 "-k" = {
2760                         value = "$mysql_key$"
2761                         description = "Path to private SSL key"
2762                 }
2763                 "-D" = {
2764                         value = "$mysql_cadir$"
2765                         description = "Path to CA directory"
2766                 }
2767                 "-L" = {
2768                         value = "$mysql_ciphers$"
2769                         description = "List of valid SSL ciphers"
2770                 }
2771         }
2772
2773         vars.mysql_hostname = "$check_address$"
2774 }
2775
2776 object CheckCommand "negate" {
2777         command = [ PluginDir + "/negate" ]
2778
2779         arguments = {
2780                 "-t" = {
2781                         value = "$negate_timeout$"
2782                         description = "Seconds before plugin times out (default: 11)"
2783                 }
2784                 "-T" = {
2785                         value = "$negate_timeout_result$"
2786                         description = "Custom result on Negate timeouts"
2787                 }
2788                 "-o" = {
2789                         value = "$negate_ok$"
2790                 }
2791                 "-w" = {
2792                         value = "$negate_warning$"
2793                 }
2794                 "-c" = {
2795                         value = "$negate_critical$"
2796                 }
2797                 "-u" = {
2798                         value = "$negate_unknown$"
2799                 }
2800                 "-s" = {
2801                         set_if = "$negate_substitute$"
2802                         description = "Substitute output text as well. Will only substitute text in CAPITALS"
2803                 }
2804                 "--wrapped-plugin" = {
2805                         value = {{
2806                                 var command = macro("$negate_command$")
2807                                 var arguments = macro("$negate_arguments$")
2808
2809                                 if (typeof(command) == String && !arguments) {
2810                                         return command
2811                                 }
2812
2813                                 var escaped_args = []
2814                                 for (arg in resolve_arguments(command, arguments)) {
2815                                         escaped_args.add(arg)
2816                                 }
2817                                 return escaped_args.join(" ")
2818                         }}
2819                         skip_key = true
2820                         order = 1
2821                 }
2822         }
2823
2824         vars.negate_timeout_result = "UNKNOWN"
2825 }
2826
2827 object CheckCommand "file_age" {
2828         command = [ PluginDir + "/check_file_age" ]
2829
2830         arguments = {
2831                 "-w" = {
2832                         value = "$file_age_warning_time$"
2833                         description = "File must be no more than this many seconds old (default: 240s)"
2834                 }
2835                 "-c" = {
2836                         value = "$file_age_critical_time$"
2837                         description = "File must be no more than this many seconds old (default: 600s)"
2838                 }
2839                 "-W" = {
2840                         value = "$file_age_warning_size$"
2841                         description = "File must be at least this many bytes long"
2842                 }
2843                 "-C" = {
2844                         value = "$file_age_critical_size$"
2845                         description = "File must be at least this many bytes long (default: 0B)"
2846                 }
2847                 "-i" = {
2848                         set_if = "$file_age_ignoremissing$"
2849                         description = "return OK if the file does not exist"
2850                 }
2851                 "-f" = {
2852                         value = "$file_age_file$"
2853                         description = "File to monitor"
2854                 }
2855         }
2856
2857         vars.file_age_ignoremissing = false
2858 }
2859
2860 object CheckCommand "smart" {
2861         command = [ PluginDir + "/check_ide_smart" ]
2862
2863         arguments = {
2864                 "-d" = {
2865                         value = "$smart_device$"
2866                         description = "Name of a local hard drive to monitor"
2867                         required = true
2868                 }
2869         }
2870 }
2871
2872 object CheckCommand "breeze" {
2873         import "ipv4-or-ipv6"
2874
2875         command = [ PluginDir + "/check_breeze" ]
2876
2877         arguments = {
2878                 "-H" = {
2879                         value = "$breeze_hostname$"
2880                         description = "Name or IP address of host to check"
2881                         required = true
2882                 }
2883                 "-C" = {
2884                         value = "$breeze_community$"
2885                         description = "SNMPv1 community (default public)"
2886                 }
2887                 "-w" = {
2888                         value = "$breeze_warning$"
2889                         description = "Percentage strength below which a WARNING status will result"
2890                         required = true
2891                 }
2892                 "-c" = {
2893                         value = "$breeze_critical$"
2894                         description = "Percentage strength below which a CRITICAL status will result"
2895                         required = true
2896                 }
2897         }
2898
2899         vars.breeze_hostname = "$check_address$"
2900         vars.breeze_warning = "50"
2901         vars.breeze_critical = "20"
2902 }
2903
2904 object CheckCommand "flexlm" {
2905         command = [ PluginDir + "/check_flexlm" ]
2906
2907         arguments = {
2908                 "-F" = {
2909                         value = "$flexlm_licensefile$"
2910                         description = "Name of license file (usually license.dat)"
2911                         required = true
2912                 }
2913                 "-t" = {
2914                         value = "$flexlm_timeout$"
2915                         description = "Plugin time out in seconds (default = 15)"
2916                 }
2917         }
2918 }
2919
2920 object CheckCommand "game" {
2921         import "ipv4-or-ipv6"
2922
2923         command = [ PluginDir + "/check_game" ]
2924
2925         arguments = {
2926                 "-P" = {
2927                         value = "$game_port$"
2928                         description = "Port to connect to"
2929                 }
2930                 "-t" = {
2931                         value = "$game_timeout$"
2932                         description = "Seconds before connection times out (default: 10)"
2933                 }
2934                 "-g" = {
2935                         value = "$game_gamefield$"
2936                         description = "Field number in raw qstat output that contains game name"
2937                 }
2938                 "-m" = {
2939                         value = "$game_mapfield$"
2940                         description = "Field number in raw qstat output that contains map name"
2941                 }
2942                 "-p" = {
2943                         value = "$game_pingfield$"
2944                         description = "Field number in raw qstat output that contains ping time"
2945                 }
2946                 "-G" = {
2947                         value = "$game_gametime$"
2948                         description = "Field number in raw qstat output that contains game time"
2949                 }
2950                 "-H" = {
2951                         value = "$game_hostname$"
2952                         description = "Name of the host running the game"
2953                 }
2954                 "game" = {
2955                         value = "$game_game$"
2956                         description = "Name of the game"
2957                         order = 1
2958                         skip_key = true
2959                 }
2960                 "ipaddress" = {
2961                         value = "$game_ipaddress$"
2962                         description = "Ipaddress of the game server to query"
2963                         order = 2
2964                         skip_key = true
2965                 }
2966         }
2967 }
2968
2969 object CheckCommand "mysql_query" {
2970         import "ipv4-or-ipv6"
2971
2972         command = [ PluginDir + "/check_mysql_query" ]
2973
2974         arguments = {
2975                 "-H" = {
2976                         value = "$mysql_query_hostname$"
2977                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
2978                 }
2979                 "-P" = {
2980                         value = "$mysql_query_port$"
2981                         description = "Port number (default: 3306)"
2982                 }
2983                 "-u" = {
2984                         value = "$mysql_query_username$"
2985                         description = "Username to login with"
2986                 }
2987                 "-p" = {
2988                         value = "$mysql_query_password$"
2989                         description = "Password to login with"
2990                 }
2991                 "-d" = {
2992                         value = "$mysql_query_database$"
2993                         description = "Database to check"
2994                 }
2995                 "-f" = {
2996                         value = "$mysql_query_file$"
2997                         description = "Read from the specified client options file"
2998                 }
2999                 "-g" = {
3000                         value = "$mysql_query_group$"
3001                         description = "Use a client options group"
3002                 }
3003                 "-q" = {
3004                         value = "$mysql_query_execute$"
3005                         description = "SQL query to run. Only first column in first row will be read"
3006                 }
3007                 "-w" = {
3008                         value = "$mysql_query_warning$"
3009                         description = "Warning range (format: start:end). Alert if outside this range"
3010                 }
3011                 "-c" = {
3012                         value = "$mysql_query_critical$"
3013                         description = "Critical range"
3014                 }
3015         }
3016
3017         vars.mysql_query_hostname = "$check_address$"
3018 }
3019
3020 object CheckCommand "radius" {
3021         import "ipv4-or-ipv6"
3022
3023         command = [
3024                 PluginDir + "/check_radius",
3025         ]
3026
3027         arguments = {
3028                 "-H" = {
3029                         value = "$radius_address$",
3030                         description = "Host name, IP Address, or unix socket (must be an absolute path)"
3031                 }
3032                 "-F" = {
3033                         value = "$radius_config_file$",
3034                         description = "Configuration file"
3035                 }
3036                 "-u" = {
3037                         value = "$radius_username$",
3038                         description = "The user to authenticate"
3039                 }
3040                 "-p" = {
3041                         value = "$radius_password$",
3042                         description = "Password for authentication"
3043                 }
3044                 "-P" = {
3045                         value = "$radius_port$",
3046                         description = "Port number (default: 1645)"
3047                 },
3048                 "-n" = {
3049                         value = "$radius_nas_id$",
3050                         description = "NAS identifier"
3051                 }
3052                 "-N" = {
3053                         value = "$radius_nas_address$",
3054                         description = "NAS IP Address"
3055                 },
3056                 "-e" = {
3057                         value = "$radius_expect$",
3058                         description = "Response string to expect from the server"
3059                 },
3060                 "-r" = {
3061                         value = "$radius_retries$",
3062                         description = "Number of times to retry a failed connection"
3063                 },
3064                 "-t" = {
3065                         value = "$radius_timeout$",
3066                         description = "Seconds before connection times out (default: 10) Optional :<timeout state> can be a state integer (0,1,2,3) or a state STRING"
3067                 },
3068         }
3069
3070         vars.radius_address = "$check_address$"
3071 }
3072
3073 object CheckCommand "nscp_api" {
3074         import "ipv4-or-ipv6"
3075
3076         command = [ PluginDir + "/check_nscp_api" ]
3077
3078         arguments = {
3079                 "-H" = {
3080                         value = "$nscp_api_host$"
3081                         description = "NSCP API host address"
3082                         required = true
3083                 }
3084                 "-P" = {
3085                         value = "$nscp_api_port$"
3086                         description = "NSCP API host port. Defaults to 8443."
3087                 }
3088                 "--password" = {
3089                         value = "$nscp_api_password$"
3090                         description = "NSCP API password"
3091                 }
3092                 "-q" = {
3093                         value = "$nscp_api_query$"
3094                         description = "NSCPI API Query endpoint to use"
3095                 }
3096                 "-a" = {
3097                         value = "$nscp_api_arguments$"
3098                         description = "NSCP API Query arguments"
3099                         repeat_key = true
3100                 }
3101         }
3102
3103         vars.nscp_api_host = "$check_address$"
3104 }
3105
3106 object CheckCommand "rpc" {
3107         import "ipv4-or-ipv6"
3108
3109         command = [ PluginDir + "/check_rpc" ]
3110
3111         arguments = {
3112                 "-H" = {
3113                         value = "$rpc_address$"
3114                         description = "RPC host address"
3115                         required = true
3116                 }
3117                 "-C" = {
3118                         value = "$rpc_command$"
3119                         description = "Programm name (or number)"
3120                         required = true
3121                 }
3122                 "-p" = {
3123                         value = "$rpc_port$"
3124                         description = "RPC port"
3125                 }
3126                 "-c" = {
3127                         value = "$rpc_version$"
3128                         description = "The version to check"
3129                 }
3130                 "-u" = {
3131                         set_if = "$rpc_udp$"
3132                         description = "Test UDP"
3133                 }
3134                 "-t" = {
3135                         set_if = "$rpc_tcp$"
3136                         description     = "Test TCP"
3137                 }
3138                 "-v" = {
3139                         set_if = "$rpc_verbose$"
3140                         description = "Show verbose details"
3141                 }
3142         }
3143
3144         vars.rpc_address = "$check_address$"
3145 }