]> git.openstreetmap.org Git - chef.git/commitdiff
Monitor all interfaces that are up and aren't the loopback interface
authorTom Hughes <tom@compton.nu>
Sat, 16 Feb 2019 12:45:46 +0000 (12:45 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 16 Feb 2019 12:45:46 +0000 (12:45 +0000)
cookbooks/munin/recipes/default.rb

index 677a62b323f7e914c46817013bca0d98d0ced190..df7bfbe08df52e67aacd622f97f791c4e3f43616 100644 (file)
@@ -160,7 +160,7 @@ munin_plugin "http_loadtime" do
 end
 
 node[:network][:interfaces].each do |ifname, ifattr|
 end
 
 node[:network][:interfaces].each do |ifname, ifattr|
-  if ifattr[:encapsulation] == "Ethernet" && ifattr[:state] == "up"
+  if ifattr[:flags].include?("UP") && !ifattr[:flags].include?("LOOPBACK")
     if node[:hardware] &&
        node[:hardware][:network] &&
        node[:hardware][:network][ifname][:device] =~ /^virtio/
     if node[:hardware] &&
        node[:hardware][:network] &&
        node[:hardware][:network][ifname][:device] =~ /^virtio/