mod_smacks: Tweak resumption age buckets towards multiples of 60

This seems like the thing to do for time, which is usually divided into
divisors divisible by 60, or multiplied by multiples of 60
This commit is contained in:
Kim Alvefur 2022-02-04 22:11:14 +01:00
parent e6f20da22f
commit a3a343b20e

View file

@ -38,7 +38,7 @@ local resumption_age = module:metric(
"histogram", "histogram",
"resumption_age", "seconds", "time the session had been hibernating at the time of a resumption", "resumption_age", "seconds", "time the session had been hibernating at the time of a resumption",
{}, {},
{buckets = { 0, 1, 2, 5, 10, 20, 50, 100, 200, 500 }} {buckets = { 0, 1, 2, 5, 10, 30, 60, 120, 300, 600 }}
):with_labels(); ):with_labels();
local sessions_expired = module:measure("sessions_expired", "counter"); local sessions_expired = module:measure("sessions_expired", "counter");
local sessions_started = module:measure("sessions_started", "counter"); local sessions_started = module:measure("sessions_started", "counter");