]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/munin/files/default/plugins/api_calls_num
Fix issues reported by new rubocop
[chef.git] / cookbooks / munin / files / default / plugins / api_calls_num
index 7c8ccabccb10cb4bb0876ed0fe3e81cfc29337ef..e2f74d9fff691727ac88c0d059ce6d2fc851efa8 100755 (executable)
@@ -11,7 +11,7 @@ CALL_TYPES = {
   :trkpts => "GPX trackpoints calls",
   :web => "Web site traffic",
   :other => "Other API calls"
-}
+}.freeze
 
 if ARGV[0] == "config"
   puts "graph_title Requests processed"
@@ -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"))