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.
 
  20 include_recipe "networking"
 
  24 service "munin-node" do
 
  25   if node[:lsb][:release].to_f >= 14.04
 
  26     provider Chef::Provider::Service::Upstart
 
  28   action [:enable, :start]
 
  29   supports :status => true, :restart => true, :reload => true
 
  32 servers = search(:node, "recipes:munin\\:\\:server")
 
  34 servers.each do |server|
 
  35   server.interfaces(:role => :external) do |interface|
 
  36     firewall_rule "accept-munin-#{server}" do
 
  38       family interface[:family]
 
  39       source "#{interface[:zone]}:#{interface[:address]}"
 
  48 template "/etc/munin/munin-node.conf" do
 
  49   source "munin-node.conf.erb"
 
  53   variables :servers => servers
 
  54   notifies :restart, "service[munin-node]"
 
  57 remote_directory "/usr/local/share/munin/plugins" do
 
  68 remote_directory "/etc/munin/plugin-conf.d" do
 
  69   source "plugin-conf.d"
 
  77   notifies :restart, "service[munin-node]"
 
  80 if Dir.glob("/proc/acpi/thermal_zone/*/temperature").empty?
 
  81   munin_plugin "acpi" do
 
  91 if File.exist?("/sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state")
 
  92   munin_plugin "cpuspeed"
 
  94   munin_plugin "cpuspeed" do
 
 100 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     munin_plugin "if_err_#{ifname}" do
 
 164     munin_plugin "if_#{ifname}" do
 
 168     munin_plugin "if_err_#{ifname}" do
 
 172     munin_plugin "if_#{ifname}" do
 
 178 munin_plugin "interrupts"
 
 179 munin_plugin "iostat"
 
 180 munin_plugin "iostat_ios"
 
 182 if Dir.glob("/dev/ipmi*").empty?
 
 183   munin_plugin_conf "ipmi" do
 
 187   munin_plugin "ipmi_fans" do
 
 191   munin_plugin "ipmi_temp" do
 
 195   munin_plugin "ipmi_power" do
 
 197     only_if { node[:lsb][:release].to_f >= 14.04 }
 
 200   munin_plugin_conf "ipmi" do
 
 204   munin_plugin "ipmi_fans" do
 
 208   munin_plugin "ipmi_temp" do
 
 212   munin_plugin "ipmi_power" do
 
 214     only_if { node[:lsb][:release].to_f >= 14.04 }
 
 218 munin_plugin "irqstats"
 
 220 munin_plugin "memory"
 
 221 munin_plugin "netstat"
 
 223 if node[:kernel][:modules].include?("nfsv3")
 
 224   munin_plugin "nfs_client"
 
 226   munin_plugin "nfs_client" do
 
 231 if node[:kernel][:modules].include?("nfsv4")
 
 232   munin_plugin "nfs4_client"
 
 234   munin_plugin "nfs4_client" do
 
 239 if node[:kernel][:modules].include?("nfsd")
 
 243   munin_plugin "nfsd" do
 
 247   munin_plugin "nfsd4" do
 
 252 munin_plugin "open_files"
 
 253 munin_plugin "open_inodes"
 
 255 munin_plugin "postfix_mailqueue" do
 
 259 munin_plugin "postfix_mailvolume" do
 
 263 munin_plugin "processes"
 
 264 munin_plugin "proc_pri"
 
 270 Dir.glob("/sys/class/hwmon/hwmon*").each do |hwmon|
 
 271   hwmon = "#{hwmon}/device" unless File.exist?("#{hwmon}/name")
 
 273   sensors_fan = true unless Dir.glob("#{hwmon}/fan*_input").empty?
 
 274   sensors_temp = true unless Dir.glob("#{hwmon}/temp*_input").empty?
 
 275   sensors_volt = true unless Dir.glob("#{hwmon}/in*_input").empty?
 
 278 if sensors_fan || sensors_temp || sensors_volt
 
 283   munin_plugin "sensors_fan" do
 
 287   munin_plugin "sensors_fan" do
 
 293   munin_plugin "sensors_temp" do
 
 297   munin_plugin "sensors_temp" do
 
 303   munin_plugin "sensors_volt" do
 
 305     conf "sensors_volt.erb"
 
 308   munin_plugin "sensors_volt" do
 
 315 munin_plugin "threads"
 
 316 munin_plugin "uptime"
 
 318 munin_plugin "vmstat"