forked from statsd/statsd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexampleConfig.js
More file actions
30 lines (22 loc) · 835 Bytes
/
exampleConfig.js
File metadata and controls
30 lines (22 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
Required Variables:
port: StatsD listening port [default: 8125]
Graphite Required Variables:
(Leave these unset to avoid sending stats to Graphite.
Set debug flag and leave these unset to run in 'dry' debug mode -
useful for testing statsd clients without a Graphite server.)
graphiteHost: hostname or IP of Graphite server
graphitePort: port of Graphite server
Optional Variables:
debug: debug flag [default: false]
debugInterval: interval to print debug information [ms, default: 10000]
dumpMessages: log all incoming messages
flushInterval: interval (in ms) to flush to Graphite
percentThreshold: for time information, calculate the Nth percentile
[%, default: 90]
*/
{
graphitePort: 2003
, graphiteHost: "graphite.host.com"
, port: 8125
}