statsd

Reference for the `statsd` adapter.

statsd · adapter · run nanook doc statsd for the same content in your terminal.

Pushes metrics to a statsd daemon over UDP.

Options

OptionTypeDefaultDescription
hoststring127.0.0.1statsd agent host
portstring8125statsd agent port

Examples

Local agent

[[adapters]]
kind = "statsd"
[adapters.opts]
host = "127.0.0.1"
port = 8125

Restrict to numeric metrics only

[[adapters]]
kind = "statsd"
[adapters.opts]
host = "metrics.internal"
port = 8125
filter = 'name ~ "cpu.*" || name ~ "mem.*" || name ~ "disk.*"'