StatsD · Example Payload

Statsd Gauge Delta Example

AggregationDaemonDogStatsDLine ProtocolMetricsObservabilityOpen SourceStatsDTCPUDPWire Protocol

Statsd Gauge Delta Example is an example object payload from StatsD, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

wireparsednotes

Example Payload

Raw ↑
{
  "wire": "gaugor:-10|g",
  "parsed": {
    "bucket": "gaugor",
    "value": -10,
    "type": "gauge",
    "wireType": "g",
    "delta": true
  },
  "notes": "Gauge delta — the `-` sign signals a relative adjustment. The daemon subtracts 10 from the existing gauge value rather than replacing it. `+4` would add 4. Useful for tracking pool depth, queue length, or any signed counter-like quantity."
}