X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/370c7aa619a594586971db0dc44f8ebb5d8f5f47..8df838bf09d95282ba29ddde8b504e0affc5f06e:/cookbooks/munin/files/default/plugins/api_calls_status?ds=sidebyside diff --git a/cookbooks/munin/files/default/plugins/api_calls_status b/cookbooks/munin/files/default/plugins/api_calls_status index 741ca14c4..4a9623f9b 100755 --- a/cookbooks/munin/files/default/plugins/api_calls_status +++ b/cookbooks/munin/files/default/plugins/api_calls_status @@ -4,6 +4,7 @@ require "json" HTTP_STATUSES = { "200" => "OK", + "206" => "Partial Content", "301" => "Moved Permanently", "302" => "Found", "303" => "See Other", @@ -12,27 +13,34 @@ HTTP_STATUSES = { "401" => "Unauthorized", "403" => "Forbidden", "404" => "Not Found", + "405" => "Method Not Allowed", "408" => "Request Timeout", "409" => "Conflict", "410" => "Gone", + "412" => "Precondition Failed", + "416" => "Requested Range Not Satisfiable", + "422" => "Unprocessable Entity", "500" => "Internal Server Error", + "502" => "Bad Gateway", + "503" => "Service Unavailable", "509" => "Bandwidth Limit Exceeded" -} +}.freeze if ARGV[0] == "config" puts "graph_title HTTP response codes" - puts "graph_args --base 1000 --logarithmic" + puts "graph_args --base 1000" puts "graph_vlabel Number of requests per ${graph_period}" puts "graph_category api" HTTP_STATUSES.each do |code, label| - puts "http#{code}.label #{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")) - HTTP_STATUSES.keys.each do |code| + HTTP_STATUSES.each_key do |code| count = statistics["status"][code] || 0 puts "http#{code}.value #{count}" end