source: noc/nagios/services.cfg @ 991

Last change on this file since 991 was 991, checked in by quentin, 15 years ago
Add CRON-WORKING Nagios test, and contact scripts when sql goes down
File size: 5.0 KB
Line 
1define service {
2        name    scripts-service
3        use     generic-service
4        max_check_attempts      6
5        normal_check_interval   2
6        retry_check_interval    1
7        contact_groups  scripts
8        notification_interval   240
9        notification_period     24x7
10        notification_options    w,u,c,r
11        register 0
12}
13
14define service {
15        use                             scripts-service
16        hostgroup_name                  scripts-all
17        service_description             PING
18        check_command                   check_ping!500.0,30%!3000.0,80%
19        }
20
21
22define service {
23        use     scripts-service
24        hostgroup_name  scripts-real
25        service_description     SSH
26        check_command   check_ssh
27}
28
29define service {
30        use     scripts-service
31        host_name       scripts
32        service_description     SSH
33        check_command   check_ssh
34        notification_period     afs
35        contact_groups  scripts,pagers
36}
37
38define service {
39        use     scripts-service
40        hostgroup_name  scripts-http
41        service_description     HTTP
42        notification_period     afs
43        check_command   check_http_heartbeat
44        contact_groups  scripts,pagers
45}
46
47define service {
48        use     scripts-service
49        hostgroup_name          scripts-https
50        service_description     HTTPS
51        notification_period     afs
52        check_command   check_https_cert!14
53        contact_groups  scripts,pagers
54}
55
56define service {
57        use     scripts-service
58        hostgroup_name          scripts-https
59        service_description     HTTPS-CERT
60        notification_period     afs
61        check_command   check_https_cert_444!14
62        contact_groups  scripts,pagers
63}
64
65define service {
66        use     scripts-service
67        host_name       scripts
68        service_description     SVN
69        check_command   check_svn
70        notification_period     afs
71}
72
73define service {
74        use     scripts-service
75        hostgroup_name  scripts-user
76        service_description     SVN
77        check_command   check_svn
78        notification_period     afs
79}
80
81define servicedependency{
82        host_name                       scripts
83        service_description             HTTP
84        dependent_host_name             scripts,scripts-cert,wildcard.scripts
85        dependent_service_description   HTTPS,HTTPS-CERT
86        execution_failure_criteria      n
87        notification_failure_criteria   w,u,c
88        }
89
90define servicedependency{
91        host_name                       scripts
92        service_description             HTTP
93        dependent_host_name             scripts-cert
94        dependent_service_description   HTTP
95        execution_failure_criteria      n
96        notification_failure_criteria   w,u,c
97        }
98
99
100define service {
101        use     scripts-service
102        hostgroup_name  scripts-mail
103        service_description     POSTFIX
104        check_command   check_remote_procs_u!1:128!1:256!postfix
105}
106
107define service {
108        use     scripts-service
109        hostgroup_name  scripts-user
110        service_description     HTTP
111        notification_period     afs
112        check_command   check_http_heartbeat
113        contact_groups  scripts
114}
115
116define service {
117        use     scripts-service
118        hostgroup_name          scripts-user
119        service_description     HTTPS
120        notification_period     afs
121        check_command   check_https_cert!14
122        contact_groups  scripts
123}
124
125define service {
126        use     scripts-service
127        hostgroup_name  scripts-user
128        service_description     NSCD
129        check_command   check_remote_procs_u!1:256!1:512!nscd
130}
131
132define service {
133        use scripts-service
134        hostgroup_name scripts-user
135        service_description     AFS
136        check_command   check_remote_afs
137}
138
139define service {
140        use scripts-service
141        hostgroup_name scripts-user
142        service_description     CRON-WORKING
143        check_command   check_remote_cron_working
144}
145
146define service {
147    use scripts-service
148    hostgroup_name scripts-user
149    service_description LDAP
150    check_command check_scripts_ldap
151}
152
153define service {
154       use     scripts-service
155       hostgroup_name   scripts-mail
156       service_description      SMTP
157       check_command    check_smtp
158}
159
160define service {
161       use     scripts-service
162       host_name        scripts
163       notification_period      afs
164       service_description      SMTP
165       check_command    check_smtp
166}
167
168define service {
169        use     scripts-service
170        hostgroup_name  scripts-cron
171        service_description     CRON
172        check_command   check_remote_procs_C!1:!1:!crond
173}
174
175define service {
176        use     scripts-service
177        hostgroup_name  scripts-real
178        service_description     DISK
179        check_command   check_remote_disk!10%!5%
180}
181
182define service {
183        use     scripts-service
184        host_name       b-m,o-f
185        service_description     LOAD
186        check_command   check_remote_load!16:10:10!20:15:15
187}
188
189define service {
190        use     scripts-service
191        hostgroup_name  mysql-masters,mysql-slaves
192        service_description     LOAD
193        check_command   check_remote_load!16:10:10!20:15:15
194        contact_groups  sql
195}
196
197define service {
198        use     scripts-service
199        hostgroup_name  scripts-user
200        service_description     USERS
201        check_command   check_remote_users!50!25
202}
203
204define service {
205        use     scripts-service
206        hostgroup_name  scripts-mysql
207        service_description     MYSQL
208        check_command   check_tcp!3306
209        contact_groups  sql,scripts,pagers
210}
211
212define service {
213        use     scripts-service
214        hostgroup_name  scripts-mysql
215        service_description     HTTP
216        notification_period     afs
217        check_command   check_http
218        contact_groups  sql,scripts,pagers
219}
220
221define service {
222        use     scripts-service
223        hostgroup_name  mysql-masters
224        service_description     MYSQL-M
225        check_command   check_remote_mysql
226        contact_groups  sql,scripts
227}
228
229define service {
230        use     scripts-service
231        hostgroup_name  mysql-slaves
232        service_description     MYSQL-S
233        check_command   check_remote_mysql_slave
234        contact_groups  sql,scripts
235}
236
237define service {
238        use     scripts-service
239        host_name       b-m,o-f
240        service_description     CPU
241        notifications_enabled   0
242        check_command   check_remote_procs_P!4!6!50
243}
Note: See TracBrowser for help on using the repository browser.