]> git.openstreetmap.org Git - chef.git/blob - cookbooks/munin/recipes/default.rb
Don't rely on ohai hardware plugin having been run
[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 package "munin-node"
21
22 service "munin-node" do
23   if node[:lsb][:release].to_f >= 15.10
24     provider Chef::Provider::Service::Systemd
25   elsif node[:lsb][:release].to_f >= 14.04
26     provider Chef::Provider::Service::Upstart
27   end
28   action [:enable, :start]
29   supports :status => true, :restart => true, :reload => true
30 end
31
32 servers = search(:node, "recipes:munin\\:\\:server") # ~FC010
33
34 servers.each do |server|
35   server.interfaces(:role => :external) do |interface|
36     firewall_rule "accept-munin-#{server}" do
37       action :accept
38       family interface[:family]
39       source "#{interface[:zone]}:#{interface[:address]}"
40       dest "fw"
41       proto "tcp:syn"
42       dest_ports "munin"
43       source_ports "1024:"
44     end
45   end
46 end
47
48 template "/etc/munin/munin-node.conf" do
49   source "munin-node.conf.erb"
50   owner "root"
51   group "root"
52   mode 0o644
53   variables :servers => servers
54   notifies :restart, "service[munin-node]"
55 end
56
57 remote_directory "/usr/local/share/munin/plugins" do
58   source "plugins"
59   owner "root"
60   group "root"
61   mode 0o755
62   files_owner "root"
63   files_group "root"
64   files_mode 0o755
65   purge true
66 end
67
68 remote_directory "/etc/munin/plugin-conf.d" do
69   source "plugin-conf.d"
70   owner "root"
71   group "munin"
72   mode 0o750
73   files_owner "root"
74   files_group "root"
75   files_mode 0o644
76   purge false
77   notifies :restart, "service[munin-node]"
78 end
79
80 if Dir.glob("/proc/acpi/thermal_zone/*/temperature").empty?
81   munin_plugin "acpi" do
82     action :delete
83   end
84 else
85   munin_plugin "acpi"
86 end
87
88 # apcpdu_
89 munin_plugin "cpu"
90
91 if File.exist?("/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state")
92   munin_plugin "cpuspeed"
93 else
94   munin_plugin "cpuspeed" do
95     action :delete
96   end
97 end
98
99 munin_plugin_conf "df" do
100   template "df.erb"
101 end
102
103 munin_plugin "df"
104 munin_plugin "df_inode"
105
106 munin_plugin "diskstats"
107 munin_plugin "entropy"
108 munin_plugin "forks"
109
110 if node[:kernel][:modules].include?("nf_conntrack")
111   package "conntrack"
112
113   munin_plugin "fw_conntrack"
114   munin_plugin "fw_forwarded_local"
115 else
116   munin_plugin "fw_conntrack" do
117     action :delete
118   end
119
120   munin_plugin "fw_forwarded_local" do
121     action :delete
122   end
123 end
124
125 if File.read("/proc/sys/net/ipv4/ip_forward").chomp == "1"
126   munin_plugin "fw_packets"
127 else
128   munin_plugin "fw_packets" do
129     action :delete
130   end
131 end
132
133 if File.exist?("/sbin/hpasmcli")
134   munin_plugin "hpasmcli2_temp" do
135     target "hpasmcli2_"
136   end
137
138   munin_plugin "hpasmcli2_fans" do
139     target "hpasmcli2_"
140   end
141 else
142   munin_plugin "hpasmcli2_temp" do
143     action :delete
144   end
145
146   munin_plugin "hpasmcli2_fans" do
147     action :delete
148   end
149 end
150
151 munin_plugin "hpasmcli_temp" do # ~FC005
152   action :delete
153 end
154
155 munin_plugin "hpasmcli_fans" do
156   action :delete
157 end
158
159 munin_plugin "http_loadtime" do
160   action :delete
161 end
162
163 node[:network][:interfaces].each do |ifname, ifattr|
164   if ifattr[:encapsulation] == "Ethernet" && ifattr[:state] == "up"
165     if node[:hardware] && node[:hardware][:network][ifname][:device] =~ /^virtio/
166       munin_plugin_conf "if_#{ifname}" do
167         template "if.erb"
168         variables :ifname => ifname
169       end
170     else
171       munin_plugin_conf "if_#{ifname}" do
172         action :delete
173       end
174     end
175
176     munin_plugin "if_err_#{ifname}" do
177       target "if_err_"
178     end
179
180     munin_plugin "if_#{ifname}" do
181       target "if_"
182     end
183   else
184     munin_plugin "if_err_#{ifname}" do
185       action :delete
186     end
187
188     munin_plugin "if_#{ifname}" do
189       action :delete
190     end
191   end
192 end
193
194 munin_plugin "interrupts"
195 munin_plugin "iostat"
196 munin_plugin "iostat_ios"
197
198 if Dir.glob("/dev/ipmi*").empty?
199   munin_plugin_conf "ipmi" do
200     action :delete
201   end
202
203   munin_plugin "ipmi_fans" do
204     action :delete
205   end
206
207   munin_plugin "ipmi_temp" do
208     action :delete
209   end
210
211   munin_plugin "ipmi_power" do
212     action :delete
213     only_if { node[:lsb][:release].to_f >= 14.04 }
214   end
215 else
216   munin_plugin_conf "ipmi" do
217     template "ipmi.erb"
218   end
219
220   munin_plugin "ipmi_fans" do
221     target "ipmi_"
222   end
223
224   munin_plugin "ipmi_temp" do
225     target "ipmi_"
226   end
227
228   munin_plugin "ipmi_power" do
229     target "ipmi_"
230     only_if { node[:lsb][:release].to_f >= 14.04 }
231   end
232 end
233
234 munin_plugin "irqstats"
235 munin_plugin "load"
236 munin_plugin "memory"
237 munin_plugin "netstat"
238
239 if node[:kernel][:modules].include?("nfsv3")
240   munin_plugin "nfs_client"
241 else
242   munin_plugin "nfs_client" do
243     action :delete
244   end
245 end
246
247 if node[:kernel][:modules].include?("nfsv4")
248   munin_plugin "nfs4_client"
249 else
250   munin_plugin "nfs4_client" do
251     action :delete
252   end
253 end
254
255 if node[:kernel][:modules].include?("nfsd")
256   munin_plugin "nfsd"
257   munin_plugin "nfsd4"
258 else
259   munin_plugin "nfsd" do
260     action :delete
261   end
262
263   munin_plugin "nfsd4" do
264     action :delete
265   end
266 end
267
268 munin_plugin "open_files"
269 munin_plugin "open_inodes"
270
271 munin_plugin "postfix_mailqueue" do
272   action :delete
273 end
274
275 munin_plugin "postfix_mailvolume" do
276   action :delete
277 end
278
279 munin_plugin "processes"
280 munin_plugin "proc_pri"
281
282 sensors_fan = false
283 sensors_temp = false
284 sensors_volt = false
285
286 Dir.glob("/sys/class/hwmon/hwmon*").each do |hwmon|
287   hwmon = "#{hwmon}/device" unless File.exist?("#{hwmon}/name")
288
289   sensors_fan = true unless Dir.glob("#{hwmon}/fan*_input").empty?
290   sensors_temp = true unless Dir.glob("#{hwmon}/temp*_input").empty?
291   sensors_volt = true unless Dir.glob("#{hwmon}/in*_input").empty?
292 end
293
294 package "lm-sensors" if sensors_fan || sensors_temp || sensors_volt
295
296 if sensors_fan
297   munin_plugin "sensors_fan" do
298     target "sensors_"
299   end
300 else
301   munin_plugin "sensors_fan" do
302     action :delete
303   end
304 end
305
306 if sensors_temp
307   munin_plugin "sensors_temp" do
308     target "sensors_"
309   end
310 else
311   munin_plugin "sensors_temp" do
312     action :delete
313   end
314 end
315
316 if sensors_volt
317   munin_plugin "sensors_volt" do
318     target "sensors_"
319     conf "sensors_volt.erb"
320   end
321 else
322   munin_plugin "sensors_volt" do
323     action :delete
324   end
325 end
326
327 munin_plugin "swap"
328 munin_plugin "tcp"
329 munin_plugin "threads"
330 munin_plugin "uptime"
331 munin_plugin "users"
332 munin_plugin "vmstat"