Add player ranking breakdown

This commit is contained in:
rubenwardy 2019-01-11 16:29:36 +00:00
parent b38a89c2fe
commit af9d3c212c

View file

@ -13,14 +13,31 @@ local function step()
local sum = 0
local avg = 0
local bins = { [50]=0, [100]=0, [200]=0, [5000]=0, rest=0 }
if #minetest.get_connected_players() > 0 then
for _, player in pairs(minetest.get_connected_players()) do
local total, _ = ctf_stats.player(player:get_player_name())
sum = sum + total.score
if total.score > 174000 then
bins[50] = bins[50] + 1
elseif total.score > 80000 then
bins[100] = bins[100] + 1
elseif total.score > 10000 then
bins[200] = bins[200] + 1
elseif total.score > 1000 then
bins[5000] = bins[5000] + 1
else
bins.rest = bins.rest + 1
end
end
avg = sum / #minetest.get_connected_players()
end
for key, value in pairs(bins) do
prometheus.post("minetest_ctf_score_bins{rank=\"" .. key .. "\"}", value)
end
prometheus.post("minetest_ctf_score_total", sum)
prometheus.post("minetest_ctf_score_avg", avg)