]> git.openstreetmap.org Git - chef.git/commitdiff
Increase alert thresholds for minutely diffs
authorTom Hughes <tom@compton.nu>
Tue, 24 Feb 2015 00:48:48 +0000 (00:48 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 24 Feb 2015 00:48:48 +0000 (00:48 +0000)
cookbooks/munin/files/default/plugins/planet_age

index 3fb0defe54991302820a4e1ced4c429a960f7670..a3f37093fb3c2a85499d38ab4b340e793b649400 100755 (executable)
@@ -5,25 +5,33 @@ files = [
     :label => "planet",
     :name => "/store/planet/planet/planet-latest.osm.bz2",
     :title => "Planet Dump",
-    :frequency => 7 * 24 * 60 * 60
+    :frequency => 7 * 24 * 60 * 60,
+    :warning => 1.05,
+    :critical => 1.1
   },
   {
     :label => "day",
     :name => "/store/planet/replication/day/state.txt",
     :title => "Daily Replication",
-    :frequency => 24 * 60 * 60
+    :frequency => 24 * 60 * 60,
+    :warning => 1.05,
+    :critical => 1.1
   },
   {
     :label => "hour",
     :name => "/store/planet/replication/hour/state.txt",
     :title => "Hourly Replication",
-    :frequency => 60 * 60
+    :frequency => 60 * 60,
+    :warning => 1.05,
+    :critical => 1.1
   },
   {
     :label => "minute",
     :name => "/store/planet/replication/minute/state.txt",
     :title => "Minutely Replication",
-    :frequency => 60
+    :frequency => 60,
+    :warning => 3,
+    :critical => 5
   }
 ]
 
@@ -37,8 +45,8 @@ if ARGV[0] == "config"
   files.each do |file|
     puts "#{file[:label]}.label #{file[:title]}"
     puts "#{file[:label]}.type GAUGE"
-    puts "#{file[:label]}.warning 0:1.05"
-    puts "#{file[:label]}.critical 0:1.1"
+    puts "#{file[:label]}.warning 0:#{file[:warning]}"
+    puts "#{file[:label]}.critical 0:#{file[:critical]}"
   end
 else