-
Notifications
You must be signed in to change notification settings - Fork 0
/
commands.cfg
381 lines (290 loc) · 13.9 KB
/
commands.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
###############################################################################
# COMMANDS.CFG - SAMPLE COMMAND DEFINITIONS FOR NAGIOS 3.2.1
#
# Last Modified: 05-31-2007
#
# NOTES: This config file provides you with some example command definitions
# that you can reference in host, service, and contact definitions.
#
# You don't need to keep commands in a separate file from your other
# object definitions. This has been done just to make things easier to
# understand.
#
###############################################################################
################################################################################
#
# SAMPLE NOTIFICATION COMMANDS
#
# These are some example notification commands. They may or may not work on
# your system without modification. As an example, some systems will require
# you to use "/usr/bin/mailx" instead of "/usr/bin/mail" in the commands below.
#
################################################################################
#ANJUKE_DATE=`date +%F" "%T`
## 'notify-host-by-email' command definition
#define command{
# command_name notify-host-by-email
# command_line /usr/bin/printf "%b" "Notification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\nDate/Time: $LONGDATETIME$\n" | /bin/mail -s "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **" $CONTACTEMAIL$
# }
# 'notify-host-by-email' command definition
define command{
command_name notify-host-by-email
# command_line /usr/bin/printf "%b" "$HOSiTADDRESS$\nInfo: $HOSTOUTPUT$" | /usr/bin/sendEmail -f [email protected] -t `mysql -uchangedb -p2012zeusops -h10.10.8.35 ops_db -e "select a.label,b.email from item a ,user b where a.owner_id=b.id and label ='$HOSTNAME'"|grep -v "label"|awk '{print$2}'` -cc $CONTACTEMAIL$ -s mail.rt.i.ajkdns.com -u "$NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$" echo "$HOSTOUTPUT$" >> /tmp/hostname1
#command_line /usr/bin/printf "%b" "$HOSTADDRESS$\nInfo: $HOSTOUTPUT$" | /bin/mail -s "$NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$" $CONTACTEMAIL$
#command_line /usr/bin/printf "%b" "$HOSTADDRESS$\nInfo: $HOSTOUTPUT$ $HOSTNAME$" > /tmp/myhostname
command_line /usr/local/nagios/etc/objects/host.sh $HOSTNAME$ $HOSTSTATE$ $NOTIFICATIONTYPE$ $CONTACTEMAIL$ $HOSTADDRESS$ $HOSTOUTPUT$
}
define command{
command_name notify-app-host-by-email
# command_line /usr/bin/printf "%b" "$HOSTADDRESS$\nInfo: $HOSTOUTPUT$\npost time `date |awk '{print$4}'`" | /usr/bin/sendEmail -f [email protected] -t $CONTACTEMAIL$ -s mail.rt.i.ajkdns.com -u "$NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$"
command_line /usr/bin/sendEmail -f [email protected] -t $CONTACTEMAIL$ -s mail.rt.i.ajkdns.com -u "$NOTIFICATIONTYPE$ $HOSTNAME$ is $HOSTSTATE$" -m "$HOSTADDRESS$\nInfo: $HOSTOUTPUT$\npost time `date |awk '{print$4}'`"
}
## 'notify-service-by-email' command definition
#define command{
# command_name notify-service-by-email
# command_line /usr/bin/printf "%b" "Notification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ Service Alert: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$
# }
# 'notify-service-by-email' command definition
define command{
command_name notify-service-by-email
# command_line /usr/bin/printf "%b" "Address: $HOSTADDRESS$\nStatus:\n\n$SERVICEOUTPUT$" | /usr/bin/sendEmail -f [email protected] -t `mysql -uchangedb -p2012zeusops -h10.10.8.35 ops_db -e"select a.label,b.email from item a ,user b where a.owner_id=b.id and label ='$HOSTNAME'"|grep -v "label"|awk '{print$2}'` -cc $CONTACTEMAIL$ -s mail.rt.i.ajkdns.com -u "IDC10 Service: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$" echo "$SERVICEOUTPUT$" >>/tmp/hostname2
#command_line /usr/bin/printf "%b" "Address: $HOSTADDRESS$\nStatus:\n\n$SERVICEOUTPUT$" | /bin/mail -s "IDC10 Service: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$" $CONTACTEMAIL$
#command_line echo hello `mysql -uchangedb -p2012zeusops -h10.10.8.35 ops_db -e"select a.label,b.email from item a ,user b where a.owner_id=b.id and label ='$HOSTNAME$'"|grep -v "label"|awk '{print$2}'` >> /tmp/myhostname
command_line /usr/local/nagios/etc/objects/service.sh "$HOSTNAME$" "$SERVICEOUTPUT$" "$HOSTADDRESS$" "$CONTACTEMAIL$" "$HOSTALIAS$" "$SERVICEDESC$" "$SERVICESTATE$"
}
define command{
command_name notify-app-service-by-email
# command_line /usr/bin/printf "%b" "Address: $HOSTADDRESS$\nStatus:\n\n$SERVICEOUTPUT$\npost time `date |awk '{print$4}'`" | /usr/bin/sendEmail -f [email protected] -t $CONTACTEMAIL$ -s mail.rt.i.ajkdns.com -u "IDC10 Service: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$"
command_line /usr/bin/sendEmail -f [email protected] -t $CONTACTEMAIL$ -s mail.rt.i.ajkdns.com -u "$HOSTALIAS$ $SERVICEDESC$:$SERVICESTATE$" -m "$SERVICEOUTPUT$"
# command_line /usr/bin/printf "%b" "Address: $HOSTADDRESS$\nStatus:\n\n$SERVICEOUTPUT$" | /usr/bin/sendEmail -f [email protected] -t $CONTACTEMAIL$ -s mail.rt.i.ajkdns.com -u "IDC10 Service: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$"
}
################################################################################
#
# SAMPLE HOST CHECK COMMANDS
#
################################################################################
# This command checks to see if a host is "alive" by pinging it
# The check must result in a 100% packet loss or 5 second (5000ms) round trip
# average time to produce a critical error.
# Note: Five ICMP echo packets are sent (determined by the '-p 5' argument)
# 'check-host-alive' command definition
define command{
command_name check-host-alive
command_line $USER1$/check_ping -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -p 5
}
#define command{
# command_name check-ping
# command_line $USER1$/check_ping -H $HOSTADDRESS$ -w 300.0,10% -c 500.0,50% -p 5
# }
define command{
command_name check-ping
command_line $USER1$/check_ping -H $HOSTADDRESS$ -w 400.0,20% -c 500.0,50% -p 10
}
# 'check_url' command definition
define command{
command_name check_url
command_line $USER1$/check_url.sh $HOSTADDRESS$
}
################################################################################
#
# SAMPLE SERVICE CHECK COMMANDS
#
# These are some example service check commands. They may or may not work on
# your system, as they must be modified for your plugins. See the HTML
# documentation on the plugins for examples of how to configure command definitions.
#
# NOTE: The following 'check_local_...' functions are designed to monitor
# various metrics on the host that Nagios is running on (i.e. this one).
################################################################################
# 'check_local_disk' command definition
define command{
command_name check_local_disk
command_line $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$
}
# 'check_local_load' command definition
define command{
command_name check_local_load
command_line $USER1$/check_load -w $ARG1$ -c $ARG2$
}
# 'check_local_procs' command definition
define command{
command_name check_local_procs
command_line $USER1$/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$
}
# 'check_local_users' command definition
define command{
command_name check_local_users
command_line $USER1$/check_users -w $ARG1$ -c $ARG2$
}
# 'check_local_swap' command definition
define command{
command_name check_local_swap
command_line $USER1$/check_swap -w $ARG1$ -c $ARG2$
}
# 'check_local_mrtgtraf' command definition
define command{
command_name check_local_mrtgtraf
command_line $USER1$/check_mrtgtraf -F $ARG1$ -a $ARG2$ -w $ARG3$ -c $ARG4$ -e $ARG5$
}
define command{
command_name check_api_baidu
command_line $USER1$/api_baidu.sh
}
define command{
command_name check_security
command_line $USER1$/security/check_security.sh
}
################################################################################
# NOTE: The following 'check_...' commands are used to monitor services on
# both local and remote hosts.
################################################################################
# 'check_ftp' command definition
define command{
command_name check_ftp
command_line $USER1$/check_ftp -H $HOSTADDRESS$ $ARG1$
}
# 'check_hpjd' command definition
define command{
command_name check_hpjd
command_line $USER1$/check_hpjd -H $HOSTADDRESS$ $ARG1$
}
# 'check_snmp' command definition
define command{
command_name check_snmp
command_line $USER1$/check_snmp -H $HOSTADDRESS$ $ARG1$
}
# 'check_http' command definition
define command{
command_name check_http
# command_line $USER1$/check_http -I $HOSTADDRESS$ $ARG1$
command_line $USER1$/check_http -H $HOSTADDRESS$ $ARG1$
}
#define command{
# command_name check_http2
# command_line $USER1$/check_http2 -H $ARG1$ -u $ARG2$
# }
# 'check_ssh' command definition
define command{
command_name check_ssh
command_line $USER1$/check_ssh $ARG1$ $HOSTADDRESS$
}
# 'check_dhcp' command definition
define command{
command_name check_dhcp
command_line $USER1$/check_dhcp $ARG1$
}
# 'check_ping' command definition
define command{
command_name check_ping
command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5
}
# 'check_pop' command definition
define command{
command_name check_pop
command_line $USER1$/check_pop -H $HOSTADDRESS$ $ARG1$
}
# 'check_imap' command definition
define command{
command_name check_imap
command_line $USER1$/check_imap -H $HOSTADDRESS$ $ARG1$
}
# 'check_smtp' command definition
define command{
command_name check_smtp
command_line $USER1$/check_smtp -H $HOSTADDRESS$ $ARG1$
}
# 'check_tcp' command definition
define command{
command_name check_tcp
command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ $ARG2$
}
define command{
command_name check_zookeeper
command_line $USER1$/check_zookeeper $HOSTADDRESS$ $ARG1$ $ARG2$
}
#define command{
# command_name check_xlog
# command_line $USER1$/check_nrpe -H $HOSTADDRESS$
# }
# 'check_gif' command definition
define command{
command_name check_gif
command_line $USER1$/check_gif.sh http://stock.eastmoney.com/images/logo.gif
}
# 'check_udp' command definition
define command{
command_name check_udp
command_line $USER1$/check_udp -H $HOSTADDRESS$ -p $ARG1$ $ARG2$
}
# 'check_nt' command definition
define command{
command_name check_nt
command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 12489 -v $ARG1$ $ARG2$
}
###mq
define command{
command_name check_mq_count
command_line $USER1$/check_mq.pl $ARG1$ $ARG2$
}
################################################################################
#
# SAMPLE PERFORMANCE DATA COMMANDS
#
# These are sample performance data commands that can be used to send performance
# data output to two text files (one for hosts, another for services). If you
# plan on simply writing performance data out to a file, consider using the
# host_perfdata_file and service_perfdata_file options in the main config file.
#
################################################################################
# 'process-host-perfdata' command definition
define command{
command_name process-host-perfdata
command_line /usr/bin/printf "%b" "$LASTHOSTCHECK$\t$HOSTNAME$\t$HOSTSTATE$\t$HOSTATTEMPT$\t$HOSTSTATETYPE$\t$HOSTEXECUTIONTIME$\t$HOSTOUTPUT$\t$HOSTPERFDATA$\n" >> /usr/local/nagios/var/host-perfdata.out
}
# 'process-service-perfdata' command definition
define command{
command_name process-service-perfdata
command_line /usr/bin/printf "%b" "$LASTSERVICECHECK$\t$HOSTNAME$\t$SERVICEDESC$\t$SERVICESTATE$\t$SERVICEATTEMPT$\t$SERVICESTATETYPE$\t$SERVICEEXECUTIONTIME$\t$SERVICELATENCY$\t$SERVICEOUTPUT$\t$SERVICEPERFDATA$\n" >> /usr/local/nagios/var/service-perfdata.out
}
# 'check_nrpe' command definition
define command{
command_name check_nrpe
command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ -t 60
}
######################################
##memcache
define command{
command_name check_memcached
command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p 11211 -t 5 -E -s 'stats\r\nquit\r\n' -e 'uptime' -M crit
}
##########################################
######cisco
define command{
command_name check_cisco_load
command_line $USER1$/check_snmp_load.pl -H $HOSTADDRESS$ -C public -w 70,65,60 -c 90,80,75 -T $ARG1$
}
###############################################################
###################pnp
define command{
command_name process-service-perfdata-file
command_line /usr/local/pnp4nagios/libexec/process_perfdata.pl --bulk=/usr/local/pnp4nagios/var/service-perfdata
}
define command{
command_name process-host-perfdata-file
command_line /usr/local/pnp4nagios/libexec/process_perfdata.pl --bulk=/usr/local/pnp4nagios/var/host-perfdata
}
#######################ntp times#################################
define command{
command_name check_ntp_times
command_line $USER1$/check_ntp_times $HOSTADDRESS$
}
###################dns#################
#define command{
# command_name check_dns
# command_line $USER1$/check_dns -H $HOSTADDRESS
# }
################# 'check dns'
define command{
command_name check_dns
command_line $USER1$/check_dns -H $ARG1$ -s $HOSTADDRESS$ -w 2 -c 3
}