You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
776 B
44 lines
776 B
/* |
|
** statsd.conf -- StatsD server configuration |
|
*/ |
|
|
|
{ |
|
address: "127.0.0.1", |
|
port: 8125, |
|
|
|
mgmt_address: "127.0.0.1", |
|
mgmt_port: 8126, |
|
|
|
server: "./servers/udp", |
|
|
|
flushInterval: 10000, |
|
flush_counts: true, |
|
|
|
log: { |
|
backend: "stdout" |
|
}, |
|
|
|
backends: [ "./backends/console" ] |
|
|
|
/* |
|
backends: [ "statsd-influxdb-backend" ], |
|
|
|
influxdb: { |
|
host: "127.0.0.1", |
|
port: 8086, |
|
ssl: false, |
|
username: "root", |
|
password: "root", |
|
database: "example", |
|
flush: { |
|
enable: true |
|
}, |
|
proxy: { |
|
enable: false, |
|
suffix: "raw", |
|
flushInterval: 1000 |
|
} |
|
} |
|
*/ |
|
} |
|
|
|
|