]> git.openstreetmap.org Git - chef.git/blob - cookbooks/munin/recipes/default.rb
41d722e0cdc64113ce703c9117f8423df1be0350
[chef.git] / cookbooks / munin / recipes / default.rb
1 #
2 # Cookbook Name:: munin
3 # Recipe:: default
4 #
5 # Copyright 2010, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 include_recipe "networking"
21
22 package "munin-node"
23
24 service "munin-node" do
25   action [ :enable, :start ]
26   supports :status => true, :restart => true, :reload => true
27 end
28
29 servers = search(:node, "recipes:munin\\:\\:server")
30
31 servers.each do |server|
32   server.interfaces(:role => :external) do |interface|
33     if interface[:zone]
34       firewall_rule "accept-munin-#{server}" do
35         action :accept
36         family interface[:family]
37         source "#{interface[:zone]}:#{interface[:address]}"
38         dest "fw"
39         proto "tcp:syn"
40         dest_ports "munin"
41         source_ports "1024:"
42       end
43     end
44   end
45 end
46
47 template "/etc/munin/munin-node.conf" do
48   source "munin-node.conf.erb"
49   owner "root"
50   group "root"
51   mode 0644
52   variables :servers => servers
53   notifies :restart, resources(:service => "munin-node")
54 end
55
56 remote_directory "/usr/local/share/munin/plugins" do
57   source "plugins"
58   owner "root"
59   group "root"
60   mode 0755
61   files_owner "root"
62   files_group "root"
63   files_mode 0755
64   purge true
65 end
66
67 remote_directory "/etc/munin/plugin-conf.d" do
68   source "plugin-conf.d"
69   owner "root"
70   group "munin"
71   mode 0750
72   files_owner "root"
73   files_group "root"
74   files_mode 0644
75   purge false
76   notifies :restart, resources(:service => "munin-node")
77 end
78
79 if Dir.glob("/proc/acpi/thermal_zone/*/temperature").empty?
80   munin_plugin "acpi" do
81     action :delete
82   end
83 else
84   munin_plugin "acpi"
85 end
86
87 # apcpdu_
88 munin_plugin "cpu"
89
90 if File.exists?("/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state")
91   munin_plugin "cpuspeed"
92 else
93   munin_plugin "cpuspeed" do
94     action :delete
95   end
96 end
97
98 munin_plugin "df"
99 munin_plugin "df_inode"
100 munin_plugin "diskstats"
101 munin_plugin "entropy"
102 munin_plugin "forks"
103
104 if node[:kernel][:modules].include?("nf_conntrack")
105   package "conntrack"
106
107   munin_plugin "fw_conntrack"
108   munin_plugin "fw_forwarded_local"
109 else
110   munin_plugin "fw_conntrack" do
111     action :delete
112   end
113
114   munin_plugin "fw_forwarded_local" do
115     action :delete
116   end
117 end
118
119 if %x{sysctl -n net.ipv4.ip_forward}.chomp == "1"
120   munin_plugin "fw_packets"
121 else
122   munin_plugin "fw_packets" do
123     action :delete
124   end
125 end
126
127 # hddtemp_smartctl
128
129 if File.exists?("/sbin/hpasmcli")
130   munin_plugin "hpasmcli_temp"
131   munin_plugin "hpasmcli_fans"
132 else
133   munin_plugin "hpasmcli_temp" do
134     action :delete
135   end
136
137   munin_plugin "hpasmcli_fans" do
138     action :delete
139   end
140 end
141
142 munin_plugin "http_loadtime" do
143   action :delete
144 end
145
146 node[:network][:interfaces].each do |ifname,ifattr|
147   if ifname =~ /^eth\d+$/
148     if ifattr[:flags] and ifattr[:flags].include?("UP")
149       munin_plugin "if_err_#{ifname}" do
150         target "if_err_"
151       end
152
153       munin_plugin "if_#{ifname}" do
154         target "if_"
155       end
156     else
157       munin_plugin "if_err_#{ifname}" do
158         action :delete
159       end
160
161       munin_plugin "if_#{ifname}" do
162         action :delete
163       end
164     end
165   end
166 end
167
168 munin_plugin "interrupts"
169 munin_plugin "iostat"
170 munin_plugin "iostat_ios"
171
172 if Dir.glob("/dev/ipmi*").empty?
173   munin_plugin "ipmi_fans" do
174     action :delete
175   end
176
177   munin_plugin "ipmi_temp" do
178     action :delete
179   end
180 else
181   munin_plugin "ipmi_fans" do
182     target "ipmi_"
183   end
184
185   munin_plugin "ipmi_temp" do
186     target "ipmi_"
187   end
188 end
189
190 munin_plugin "irqstats"
191
192 Dir.new("/sys/block").each do |device|
193   if device.match(/^sd/)
194     munin_plugin "linux_diskstat_iops_#{device}" do
195       target "linux_diskstat_"
196     end
197
198     munin_plugin "linux_diskstat_latency_#{device}" do
199       target "linux_diskstat_"
200     end
201
202     munin_plugin "linux_diskstat_throughput_#{device}" do
203       target "linux_diskstat_"
204     end
205   end
206 end
207
208 munin_plugin "load"
209 munin_plugin "memory"
210 munin_plugin "netstat"
211
212 if File.exists?("/proc/net/rpc/nfs")
213   munin_plugin "nfs4_client"
214 else
215   munin_plugin "nfs4_client" do
216     action :delete
217   end
218 end
219
220 if File.exists?("/proc/net/rpc/nfsd")
221   munin_plugin "nfsd"
222   munin_plugin "nfsd4"
223 else
224   munin_plugin "nfsd" do
225     action :delete
226   end
227
228   munin_plugin "nfsd4" do
229     action :delete
230   end
231 end
232
233 munin_plugin "open_files"
234 munin_plugin "open_inodes"
235
236 munin_plugin "postfix_mailqueue" do
237   action :delete
238 end
239
240 munin_plugin "postfix_mailvolume" do
241   action :delete
242 end
243
244 munin_plugin "processes"
245 munin_plugin "proc_pri"
246
247 sensors_fan = false
248 sensors_temp = false
249 sensors_volt = false
250
251 Dir.glob("/sys/class/hwmon/hwmon*").each do |hwmon|
252   package "lm-sensors"
253
254   hwmon = "#{hwmon}/device" unless File.exists?("#{hwmon}/name")
255
256   sensors_fan = true unless Dir.glob("#{hwmon}/fan*_input").empty?
257   sensors_temp = true unless Dir.glob("#{hwmon}/temp*_input").empty?
258   sensors_volt = true unless Dir.glob("#{hwmon}/in*_input").empty?
259 end
260
261 if sensors_fan
262   munin_plugin "sensors_fan" do
263     target "sensors_"
264   end
265 else
266   munin_plugin "sensors_fan" do
267     action :delete
268   end
269 end
270
271 if sensors_temp
272   munin_plugin "sensors_temp" do
273     target "sensors_"
274   end
275 else
276   munin_plugin "sensors_temp" do
277     action :delete
278   end
279 end
280
281 if sensors_volt
282   munin_plugin "sensors_volt" do
283     target "sensors_"
284   end
285 else
286   munin_plugin "sensors_volt" do
287     action :delete
288   end
289 end
290
291 # smart_
292 munin_plugin "swap"
293 munin_plugin "threads"
294 munin_plugin "uptime"
295 munin_plugin "users"
296 munin_plugin "vmstat"