Counters represent totals that only ever go up (reset on server restart). Use them for events that accumulate: joins, kills, items crafted, Robux spent.Documentation Index
Fetch the complete documentation index at: https://docs.zyntex.dev/llms.txt
Use this file to discover all available pages before exploring further.
Create and use
Snapshot → delta pattern
Counters expect deltas. If you poll a current snapshot and want to convert it into a counter:Each
:inc(...) updates the local running total and pushes it. Feed deltas into :inc to reflect true growth.Best practices
- Prefer names ending in
_totalfor clarity. - Use labels sparingly (e.g.,
{region="NA"}) to avoid high cardinality. - Counters are ideal for bar, pie, table, and stat panels.

