source: noc/nagios/services.cfg @ 963

Last change on this file since 963 was 960, checked in by quentin, 15 years ago
Update hostgroup names so they stay within the scripts- namespace, so we can support multiple services on syn
File size: 4.8 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 LDAP
143    check_command check_scripts_ldap
144}
145
146define service {
147       use     scripts-service
148       hostgroup_name   scripts-mail
149       service_description      SMTP
150       check_command    check_smtp
151}
152
153define service {
154       use     scripts-service
155       host_name        scripts
156       notification_period      afs
157       service_description      SMTP
158       check_command    check_smtp
159}
160
161define service {
162        use     scripts-service
163        hostgroup_name  scripts-cron
164        service_description     CRON
165        check_command   check_remote_procs_C!1:!1:!crond
166}
167
168define service {
169        use     scripts-service
170        hostgroup_name  scripts-real
171        service_description     DISK
172        check_command   check_remote_disk!10%!5%
173}
174
175define service {
176        use     scripts-service
177        host_name       b-m,o-f
178        service_description     LOAD
179        check_command   check_remote_load!16:10:10!20:15:15
180}
181
182define service {
183        use     scripts-service
184        hostgroup_name  mysql-masters,mysql-slaves
185        service_description     LOAD
186        check_command   check_remote_load!16:10:10!20:15:15
187        contact_groups  sql
188}
189
190define service {
191        use     scripts-service
192        hostgroup_name  scripts-user
193        service_description     USERS
194        check_command   check_remote_users!50!25
195}
196
197define service {
198        use     scripts-service
199        hostgroup_name  scripts-mysql
200        service_description     MYSQL
201        check_command   check_tcp!3306
202        contact_groups  sql,scripts,pagers
203}
204
205define service {
206        use     scripts-service
207        hostgroup_name  scripts-mysql
208        service_description     HTTP
209        notification_period     afs
210        check_command   check_http
211        contact_groups  sql,scripts,pagers
212}
213
214define service {
215        use     scripts-service
216        hostgroup_name  mysql-masters
217        service_description     MYSQL-M
218        check_command   check_remote_mysql
219        contact_groups  sql
220}
221
222define service {
223        use     scripts-service
224        hostgroup_name  mysql-slaves
225        service_description     MYSQL-S
226        check_command   check_remote_mysql_slave
227        contact_groups  sql
228}
229
230define service {
231        use     scripts-service
232        host_name       b-m,o-f
233        service_description     CPU
234        notifications_enabled   0
235        check_command   check_remote_procs_P!4!6!50
236}
Note: See TracBrowser for help on using the repository browser.