2 # Cookbook Name:: munin
5 # Copyright 2010, OpenStreetMap Foundation
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
11 # http://www.apache.org/licenses/LICENSE-2.0
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.
22 service "munin-node" do
23 action [:enable, :start]
24 supports :status => true, :restart => true, :reload => true
27 servers = search(:node, "recipes:munin\\:\\:server") # ~FC010
29 servers.each do |server|
30 server.interfaces(:role => :external) do |interface|
31 firewall_rule "accept-munin-#{server}" do
33 family interface[:family]
34 source "#{interface[:zone]}:#{interface[:address]}"
43 template "/etc/munin/munin-node.conf" do
44 source "munin-node.conf.erb"
48 variables :servers => servers
49 notifies :restart, "service[munin-node]"
52 remote_directory "/usr/local/share/munin/plugins" do
63 remote_directory "/etc/munin/plugin-conf.d" do
64 source "plugin-conf.d"
72 notifies :restart, "service[munin-node]"
75 if Dir.glob("/proc/acpi/thermal_zone/*/temperature").empty?
76 munin_plugin "acpi" do
86 if File.exist?("/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state")
87 munin_plugin "cpuspeed"
89 munin_plugin "cpuspeed" do
94 munin_plugin_conf "df" do
99 munin_plugin "df_inode"
101 munin_plugin "diskstats"
102 munin_plugin "entropy"
105 if node[:kernel][:modules].include?("nf_conntrack")
108 munin_plugin "fw_conntrack"
109 munin_plugin "fw_forwarded_local"
111 munin_plugin "fw_conntrack" do
115 munin_plugin "fw_forwarded_local" do
120 if File.read("/proc/sys/net/ipv4/ip_forward").chomp == "1"
121 munin_plugin "fw_packets"
123 munin_plugin "fw_packets" do
128 if File.exist?("/sbin/hpasmcli")
129 munin_plugin "hpasmcli2_temp" do
133 munin_plugin "hpasmcli2_fans" do
137 munin_plugin "hpasmcli2_temp" do
141 munin_plugin "hpasmcli2_fans" do
146 munin_plugin "hpasmcli_temp" do # ~FC005
150 munin_plugin "hpasmcli_fans" do
154 munin_plugin "http_loadtime" do
158 node[:network][:interfaces].each do |ifname, ifattr|
159 if ifattr[:encapsulation] == "Ethernet" && ifattr[:state] == "up"
160 if node[:hardware] &&
161 node[:hardware][:network] &&
162 node[:hardware][:network][ifname][:device] =~ /^virtio/
163 munin_plugin_conf "if_#{ifname}" do
165 variables :ifname => ifname
168 munin_plugin_conf "if_#{ifname}" do
173 munin_plugin "if_err_#{ifname}" do
177 munin_plugin "if_#{ifname}" do
181 munin_plugin "if_err_#{ifname}" do
185 munin_plugin "if_#{ifname}" do
191 munin_plugin "interrupts"
192 munin_plugin "iostat"
193 munin_plugin "iostat_ios"
195 if Dir.glob("/dev/ipmi*").empty?
196 munin_plugin_conf "ipmi" do
200 munin_plugin "ipmi_fans" do
204 munin_plugin "ipmi_temp" do
208 munin_plugin "ipmi_power" do
212 munin_plugin_conf "ipmi" do
216 munin_plugin "ipmi_fans" do
220 munin_plugin "ipmi_temp" do
224 munin_plugin "ipmi_power" do
229 munin_plugin "irqstats"
231 munin_plugin "memory"
232 munin_plugin "netstat"
234 if node[:kernel][:modules].include?("nfsv3")
235 munin_plugin "nfs_client"
237 munin_plugin "nfs_client" do
242 if node[:kernel][:modules].include?("nfsv4")
243 munin_plugin "nfs4_client"
245 munin_plugin "nfs4_client" do
250 if node[:kernel][:modules].include?("nfsd")
254 munin_plugin "nfsd" do
258 munin_plugin "nfsd4" do
263 munin_plugin "open_files"
264 munin_plugin "open_inodes"
266 munin_plugin "postfix_mailqueue" do
270 munin_plugin "postfix_mailvolume" do
274 munin_plugin "processes"
275 munin_plugin "proc_pri"
281 Dir.glob("/sys/class/hwmon/hwmon*").each do |hwmon|
282 hwmon = "#{hwmon}/device" unless File.exist?("#{hwmon}/name")
284 sensors_fan = true unless Dir.glob("#{hwmon}/fan*_input").empty?
285 sensors_temp = true unless Dir.glob("#{hwmon}/temp*_input").empty?
286 sensors_volt = true unless Dir.glob("#{hwmon}/in*_input").empty?
289 package "lm-sensors" if sensors_fan || sensors_temp || sensors_volt
292 munin_plugin "sensors_fan" do
296 munin_plugin "sensors_fan" do
302 munin_plugin "sensors_temp" do
306 munin_plugin "sensors_temp" do
312 munin_plugin "sensors_volt" do
314 conf "sensors_volt.erb"
317 munin_plugin "sensors_volt" do
324 munin_plugin "threads"
325 munin_plugin "uptime"
327 munin_plugin "vmstat"