OLD | NEW |
1 node 'server4' { | 1 node 'server4' { |
2 include base, ssh, puppetmaster | 2 include base, ssh, puppetmaster |
3 | 3 |
4 class {'nagios::client': | 4 class {'nagios::client': |
5 server_address => 'monitoring.adblockplus.org' | 5 server_address => 'monitoring.adblockplus.org' |
6 } | 6 } |
7 | 7 |
8 class {'nagios::server': | 8 class {'nagios::server': |
9 vhost => 'monitoring.adblockplus.org', | 9 vhost => 'monitoring.adblockplus.org', |
10 htpasswd_source => 'puppet:///modules/private/nagios-htpasswd', | 10 htpasswd_source => 'puppet:///modules/private/nagios-htpasswd', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 nagios_host {'filter1.adblockplus.org': use => 'generic-host'} | 71 nagios_host {'filter1.adblockplus.org': use => 'generic-host'} |
72 nagios_host {'filter2.adblockplus.org': use => 'generic-host'} | 72 nagios_host {'filter2.adblockplus.org': use => 'generic-host'} |
73 nagios_host {'filter3.adblockplus.org': use => 'generic-host'} | 73 nagios_host {'filter3.adblockplus.org': use => 'generic-host'} |
74 nagios_host {'filter4.adblockplus.org': use => 'generic-host'} | 74 nagios_host {'filter4.adblockplus.org': use => 'generic-host'} |
75 nagios_host {'filter5.adblockplus.org': use => 'generic-host'} | 75 nagios_host {'filter5.adblockplus.org': use => 'generic-host'} |
76 nagios_host {'filter6.adblockplus.org': use => 'generic-host'} | 76 nagios_host {'filter6.adblockplus.org': use => 'generic-host'} |
77 nagios_host {'filtermaster1.adblockplus.org': use => 'generic-host'} | 77 nagios_host {'filtermaster1.adblockplus.org': use => 'generic-host'} |
78 nagios_host {'notification1.adblockplus.org': use => 'generic-host'} | 78 nagios_host {'notification1.adblockplus.org': use => 'generic-host'} |
79 nagios_host {'notification2.adblockplus.org': use => 'generic-host'} | 79 nagios_host {'notification2.adblockplus.org': use => 'generic-host'} |
80 nagios_host {'update1.adblockplus.org': use => 'generic-host'} | 80 nagios_host {'update1.adblockplus.org': use => 'generic-host'} |
| 81 nagios_host {'web1.adblockplus.org': use => 'generic-host'} |
81 | 82 |
82 nagios_hostgroup {'all': members => '*'} | 83 nagios_hostgroup {'all': members => '*'} |
83 nagios_hostgroup {'http-servers': members => 'server_4.adblockplus.org, server
_10.adblockplus.org, server_16.adblockplus.org, server_22.adblockplus.org, downl
oad1.adblockplus.org, update1.adblockplus.org'} | 84 nagios_hostgroup {'http-servers': members => 'server_4.adblockplus.org, server
_10.adblockplus.org, server_16.adblockplus.org, server_22.adblockplus.org, downl
oad1.adblockplus.org, update1.adblockplus.org, web1.adblockplus.org'} |
84 nagios_hostgroup {'notification-servers': members => 'notification1.adblockplu
s.org, notification2.adblockplus.org'} | 85 nagios_hostgroup {'notification-servers': members => 'notification1.adblockplu
s.org, notification2.adblockplus.org'} |
85 nagios_hostgroup {'filter-servers': members => 'server_5.adblockplus.org, serv
er_6.adblockplus.org, server_7.adblockplus.org, server_11.adblockplus.org, serve
r_12.adblockplus.org, server_15.adblockplus.org, server_19.adblockplus.org, filt
er1.adblockplus.org, filter2.adblockplus.org, filter3.adblockplus.org, filter4.a
dblockplus.org, filter5.adblockplus.org, filter6.adblockplus.org'} | 86 nagios_hostgroup {'filter-servers': members => 'server_5.adblockplus.org, serv
er_6.adblockplus.org, server_7.adblockplus.org, server_11.adblockplus.org, serve
r_12.adblockplus.org, server_15.adblockplus.org, server_19.adblockplus.org, filt
er1.adblockplus.org, filter2.adblockplus.org, filter3.adblockplus.org, filter4.a
dblockplus.org, filter5.adblockplus.org, filter6.adblockplus.org'} |
86 | 87 |
87 nagios_service {'current-load': | 88 nagios_service {'current-load': |
88 use => 'generic-service', | 89 use => 'generic-service', |
89 hostgroup_name => 'all', | 90 hostgroup_name => 'all', |
90 service_description => 'Current Load', | 91 service_description => 'Current Load', |
91 check_command => 'check_nrpe_1arg!check_load' | 92 check_command => 'check_nrpe_1arg!check_load' |
92 } | 93 } |
93 | 94 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 check_command => 'check_nrpe_1arg!check_connections', | 156 check_command => 'check_nrpe_1arg!check_connections', |
156 } | 157 } |
157 | 158 |
158 nagios_service {'memory': | 159 nagios_service {'memory': |
159 use => 'generic-service', | 160 use => 'generic-service', |
160 hostgroup_name => 'all', | 161 hostgroup_name => 'all', |
161 service_description => 'Memory', | 162 service_description => 'Memory', |
162 check_command => 'check_nrpe_1arg!check_memory', | 163 check_command => 'check_nrpe_1arg!check_memory', |
163 } | 164 } |
164 } | 165 } |
OLD | NEW |