]> git.openstreetmap.org Git - chef.git/commitdiff
Avoid spikes in munin graph when api counters reset
authorTom Hughes <tom@compton.nu>
Wed, 8 Apr 2015 19:02:18 +0000 (20:02 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 8 Apr 2015 19:02:18 +0000 (20:02 +0100)
cookbooks/munin/files/default/plugins/api_calls_num
cookbooks/munin/files/default/plugins/api_calls_status

index 7c8ccabccb10cb4bb0876ed0fe3e81cfc29337ef..443af2c193565025e9a303323807dd8b00975265 100755 (executable)
@@ -22,6 +22,7 @@ if ARGV[0] == "config"
   CALL_TYPES.each do |type, label|
     puts "#{type}.label #{label}"
     puts "#{type}.type DERIVE"
+    puts "#{type}.min 0"
   end
 else
   statistics = JSON.parse(File.read("/srv/www.openstreetmap.org/rails/tmp/statistics.json"))
index 8167f21d6ff05e0a1a783b605c47bfb79a5955dd..6d0e619ed5e637ce15b19119f12244260fddb4ca 100755 (executable)
@@ -34,6 +34,7 @@ if ARGV[0] == "config"
   HTTP_STATUSES.each do |code, label|
     puts "http#{code}.label #{code} #{label}"
     puts "http#{code}.type DERIVE"
+    puts "http#{code}.min 0"
   end
 else
   statistics = JSON.parse(File.read("/srv/www.openstreetmap.org/rails/tmp/statistics.json"))