Add player ranking breakdown
This commit is contained in:
parent
b38a89c2fe
commit
af9d3c212c
1 changed files with 17 additions and 0 deletions
|
@ -13,14 +13,31 @@ local function step()
|
||||||
|
|
||||||
local sum = 0
|
local sum = 0
|
||||||
local avg = 0
|
local avg = 0
|
||||||
|
local bins = { [50]=0, [100]=0, [200]=0, [5000]=0, rest=0 }
|
||||||
if #minetest.get_connected_players() > 0 then
|
if #minetest.get_connected_players() > 0 then
|
||||||
for _, player in pairs(minetest.get_connected_players()) do
|
for _, player in pairs(minetest.get_connected_players()) do
|
||||||
local total, _ = ctf_stats.player(player:get_player_name())
|
local total, _ = ctf_stats.player(player:get_player_name())
|
||||||
sum = sum + total.score
|
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
|
end
|
||||||
avg = sum / #minetest.get_connected_players()
|
avg = sum / #minetest.get_connected_players()
|
||||||
end
|
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_total", sum)
|
||||||
prometheus.post("minetest_ctf_score_avg", avg)
|
prometheus.post("minetest_ctf_score_avg", avg)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue