Files
asterisk/configs/samples/statsd.conf.sample
Rijnhard Hessel 728a52fb61 res_statsd: handle non-standard meter type safely
Meter types are not well supported,
lacking support in telegraf, datadog and the official statsd servers.
We deprecate meters and provide a compliant fallback for any existing usages.

A flag has been introduced to allow meters to fallback to counters.


ASTERISK-29513

Change-Id: I5fcb385983a1b88f03696ff30a26b55c546a1dd7
2021-08-03 08:12:33 -05:00

11 lines
541 B
Plaintext

[general]
;enabled = yes ; When set to yes, statsd support is enabled
;server = 127.0.0.1 ; server[:port] of statsd server to use.
; If not specified, the port is 8125
;prefix = ; Prefix to prepend to all metrics
;add_newline = no ; Append a newline to every event. This is
; useful if you want to run a fake statsd
; server using netcat (nc -lu 8125)
;meter_support = yes ; Enable/disable the non-standard StatsD Meter type
; if disabled falls back to counter
; and will append a "_meter" suffix to the metric name