]> granicus.if.org Git - icinga2/blob - itl/command-plugins-windows.conf
Add -d option to check_service
[icinga2] / itl / command-plugins-windows.conf
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2017 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 object CheckCommand "disk-windows" {
21         command = [ PluginDir + "/check_disk.exe" ]
22
23         arguments = {
24                 "-w" = {
25                         value = "$disk_win_warn$"
26                         description = "Warning threshold"
27                 }
28                 "-c" = {
29                         value = "$disk_win_crit$"
30                         description = "Critical threshold"
31                 }
32                 "-p" = {
33                         value = "$disk_win_path$"
34                         description = "Optional paths to check"
35                         repeat_key = true
36                 }
37                 "-u" = {
38                         value = "$disk_win_unit$"
39                         description = "Use this unit to display disk space"
40                 }
41                 "-x" = {
42                         value = "$disk_win_exclude$"
43                         description = "Exclude these drives from check"
44                 }
45         }
46
47         vars.disk_win_unit = "mb"
48         //The default
49 }
50
51 object CheckCommand "load-windows" {
52         command = [ PluginDir + "/check_load.exe" ]
53
54         arguments = {
55                 "-w" = {
56                         value = "$load_win_warn$"
57                         description = "Warning threshold"
58                 }
59                 "-c" = {
60                         value = "$load_win_crit$"
61                         description = "Critical threshold"
62                 }
63         }
64 }
65
66 object CheckCommand "memory-windows" {
67         command = [ PluginDir + "/check_memory.exe" ]
68
69         arguments = {
70                 "-w" = {
71                         value = "$memory_win_warn$"
72                         description = "Warning Threshold"
73                 }
74                 "-c" = {
75                         value = "$memory_win_crit$"
76                         description = "Critical Threshold"
77                 }
78                 "-u" = {
79                         value = "$memory_win_unit$"
80                         description = "Use this unit to display memory"
81                 }
82         }
83         vars.memory_win_unit = "mb"
84         //The default
85 }
86
87 object CheckCommand "network-windows" {
88         command = [ PluginDir + "/check_network.exe" ]
89
90         arguments = {
91                 "-w" = {
92                         value = "$network_win_warn$"
93                         description = "Warning threshold"
94                 }
95                 "-c" = {
96                         value = "$network_win_crit$"
97                         description = "Critical threshold"
98                 }
99                 "-n" = {
100                         set_if = "$network_no_isatap$"
101                         description = "Don't show ISATAP interfaces in output"
102                 }
103         }
104         vars.network_no_isatap = true
105 }
106
107 object CheckCommand "perfmon-windows" {
108         command = [ PluginDir + "/check_perfmon.exe" ]
109
110         arguments = {
111                 "-w" = {
112                         value = "$perfmon_win_warn$"
113                         description = "Warning threshold"
114                 }
115                 "-c" = {
116                         value = "$perfmon_win_crit$"
117                         description = "Critical threshold"
118                 }
119                 "-P" = {
120                         value = "$perfmon_win_counter$"
121                         description = "The Performance Counter string"
122                         required = true
123                 }
124                 "--performance-wait" = {
125                         value = "$perfmon_win_wait$"
126                         description = "Wait time between two counter collections in ms"
127                 }
128                 "--fmt-countertype" = {
129                         value = "$perfmon_win_type$"
130                         description = "Performance counter type"
131                 }
132                 "--perf-syntax" = {
133                         value = "$perfmon_win_syntax$"
134                         description = "Use this instead of the counter name in the perfomance data"
135                 }
136         }
137
138         vars.performance_win_wait = 1000
139         vars.perfmon_win_type = "double"
140 }
141
142
143 template CheckCommand "ping-common-windows" {
144         command = [ PluginDir + "/check_ping.exe" ]
145
146         arguments = {
147                 "-H" = {
148                         value = "$ping_win_address$"
149                         required = true
150                         description = "Address to ping"
151                 }
152                 "-w" = {
153                         value = "$ping_win_wrta$,$ping_win_wpl$%"
154                         description = "Warning threshold: RTA and package loss seperated by comma"
155                 }
156                 "-c" = {
157                         value = "$ping_win_crta$,$ping_win_cpl$%"
158                         description = "Warning threshold: RTA and package loss seperated by comma"
159                 }
160                 "-p" = {
161                         value = "$ping_win_packets$"
162                         description = "Number of packages to send"
163                 }
164                 "-t" = {
165                         value = "$ping_win_timeout$"
166                         description = "Timeout in ms"
167                 }
168         }
169
170         vars.ping_win_packets = "5"
171         vars.ping_win_timeout = "1000"
172 }
173
174 object CheckCommand "ping-windows" {
175         import "ping-common-windows"
176         import "ipv4-or-ipv6"
177
178         vars.ping_win_address = "$check_address$"
179 }
180
181 object CheckCommand "ping4-windows" {
182         import "ping-common-windows"
183
184         command += [ "-4" ]
185
186         vars.ping_win_address = "$address$"
187 }
188
189 object CheckCommand "ping6-windows" {
190         import "ping-common-windows"
191
192         command += [ "-6" ]
193
194         vars.ping_win_address = "$address6$"
195 }
196
197 object CheckCommand "procs-windows" {
198         command = [ PluginDir + "/check_procs.exe" ]
199
200         arguments = {
201                 "-w" = {
202                         value = "$procs_win_warn$"
203                         description = "Warning threshold"
204                 }
205                 "-c" = {
206                         value = "$procs_win_crit$"
207                         description = "Critical threshold"
208                 }
209                 "-u" = {
210                         value = "$procs_win_user$"
211                         description = "Count only procs of this user"
212                 }
213         }
214 }
215
216 object CheckCommand "service-windows" {
217         command = [ PluginDir + "/check_service.exe" ]
218
219         arguments = {
220                 "-w" = {
221                         set_if = "$service_win_warn$"
222                         description = "Warn instead of critical when service is not running"
223                 }
224                 "-s" = {
225                         value = "$service_win_service$"
226                         required = true
227                         description = "Service to check"
228                 }
229                 "-d" = {
230                         set_if = "$service_win_description$"
231                         description = "Use service description instead of name"
232                 }
233         }
234 }
235
236 object CheckCommand "swap-windows" {
237         command = [ PluginDir + "/check_swap.exe" ]
238
239         arguments = {
240                 "-w" = {
241                         value = "$swap_win_warn$"
242                         description = "Warning threshold"
243                 }
244                 "-c" = {
245                         value = "$swap_win_crit$"
246                         description = "Critical threshold"
247                 }
248                 "-u" = {
249                         value = "$swap_win_unit$"
250                         description = "Unit to display swap in"
251                 }
252         }
253
254         vars.swap_win_unit = "mb"
255 }
256
257 object CheckCommand "update-windows" {
258         command = [ PluginDir + "/check_update.exe" ]
259
260         arguments = {
261                 "-w" = {
262                         set_if = "$update_win_warn$"
263                         description = "Warn if there are important updates available"
264                 }
265                 "-c" = {
266                         set_if = "$update_win_crit$"
267                         description = "Critical if there are important updates that require a reboot"
268                 }
269                 "--possible-reboot" = {
270                         set_if = "$update_win_reboot$"
271                         description = "Treat 'may need update' as 'definitely needs update'"
272                 }
273         }
274
275         timeout = 5m
276 }
277
278 object CheckCommand "uptime-windows" {
279         command = [ PluginDir + "/check_uptime.exe" ]
280
281         arguments = {
282                 "-w" = {
283                         value = "$uptime_win_warn$"
284                         description = "Warning threshold"
285                 }
286                 "-c" = {
287                         value = "$uptime_win_crit$"
288                         description = "Critical threshold"
289                 }
290                 "-u" = {
291                         value = "$uptime_win_unit$"
292                         description = "Time unit to use"
293                 }
294         }
295
296         vars.uptime_win_unit = "s"
297 }
298
299 object CheckCommand "users-windows" {
300         command = [ PluginDir + "/check_users.exe" ]
301
302         arguments = {
303                 "-w" = {
304                         value = "$users_win_warn$"
305                         description = "Warning threshold"
306                 }
307                 "-c" = {
308                         value = "$users_win_crit$"
309                         description = "Critical threshold"
310                 }
311         }
312 }