Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 classes: | |
2 puppetmaster: | |
3 nagios::server: | |
4 domain: "monitoring.adblockplus.org" | |
5 certificate: "monitoring.adblockplus.org_sslcert.pem" | |
6 private_key: "monitoring.adblockplus.org_sslcert.key" | |
7 is_default: "true" | |
8 htpasswd_source: "puppet:///modules/private/nagios-htpasswd" | |
9 admins: ["*"] | |
10 authority: "adblockplus.org" | |
11 | |
12 nagios_commands: | |
13 check_nrpe_timeout: | |
14 command_line: '/usr/lib/nagios/plugins/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ -t $ARG2$' | |
15 check_easylist_http: | |
16 command_line: '/usr/lib/nagios/plugins/check_http -S -I $HOSTADDRESS$ -H eas ylist-downloads.adblockplus.org -u /easylist.txt -k "Accept-Encoding: gzip,defla te" -e "HTTP/1.1 200 OK"' | |
17 check_notification_http: | |
18 command_line: '/usr/lib/nagios/plugins/check_http -S -I $HOSTADDRESS$ -H not ification.adblockplus.org -u /notification.json -k "Accept-Encoding: gzip,deflat e" -e "HTTP/1.1 200 OK"' | |
19 | |
20 nagios_hostgroups: | |
21 all: | |
22 members: '*' | |
23 filter-servers: | |
24 members: '' | |
Wladimir Palant
2015/03/03 20:00:19
Is this "TODO"?
mathias
2015/03/04 12:32:37
Nope. The servers are added into the groups alread
| |
25 http-servers: | |
26 members: '' | |
27 | |
28 nagios_services: | |
29 current-load: | |
30 use: 'generic-service' | |
31 hostgroup_name: 'all' | |
32 service_description: 'Current Load' | |
33 check_command: 'check_nrpe_1arg!check_load' | |
34 disk-space: | |
35 use: 'generic-service' | |
36 hostgroup_name: 'all' | |
37 service_description: 'Disk Space' | |
38 check_command: 'check_nrpe_1arg!check_disk' | |
39 total-processes: | |
40 use: 'generic-service' | |
41 hostgroup_name: 'all' | |
42 service_description: 'Total Processes' | |
43 check_command: 'check_nrpe_1arg!check_total_procs' | |
44 zombie-processes: | |
45 use: 'generic-service' | |
46 hostgroup_name: 'all' | |
47 service_description: 'Zombie Processes' | |
48 check_command: 'check_nrpe_1arg!check_zombie_procs' | |
49 ssh: | |
50 use: 'generic-service' | |
51 hostgroup_name: 'all' | |
52 service_description: 'SSH' | |
53 check_command: 'check_ssh' | |
54 http: | |
55 use: 'generic-service' | |
56 hostgroup_name: 'http-servers' | |
57 service_description: 'HTTP' | |
58 check_command: 'check_http' | |
59 easylist-http: | |
60 use: 'generic-service' | |
61 hostgroup_name: 'filter-servers' | |
62 service_description: 'HTTP' | |
63 check_command: 'check_easylist_http' | |
64 notification-http: | |
65 use: 'generic-service' | |
66 hostgroup_name: 'filter-servers' | |
67 service_description: 'HTTP' | |
68 check_command: 'check_notification_http' | |
69 bandwidth: | |
70 use: 'generic-service' | |
71 hostgroup_name: 'all' | |
72 service_description: 'Bandwidth' | |
73 check_command: 'check_nrpe_timeout!check_bandwidth!20' | |
74 first_notification_delay: '15' | |
75 connections: | |
76 use: 'generic-service' | |
77 hostgroup_name: 'all' | |
78 service_description: 'Connections' | |
79 check_command: 'check_nrpe_1arg!check_connections' | |
80 memory: | |
81 use: 'generic-service' | |
82 hostgroup_name: 'all' | |
83 service_description: 'Memory' | |
84 check_command: 'check_nrpe_1arg!check_memory' | |
85 | |
OLD | NEW |