Distributions with optional buckets (damage, ping, time‑to‑kill).
buckets
local Telemetry = Zyntex:Telemetry(10) -- Ping with custom buckets (ms) local ping = Telemetry:Histogram("ping_milliseconds", { description = "Observed player RTT", buckets = {25, 50, 75, 100, 150, 200, 300} }) ping:observe(72) -- one sample ping:observe(131, {region="EU"})