aboutsummaryrefslogtreecommitdiffstats
path: root/extra/deployment/collectd_statsd.conf
blob: a434ed9fe7aeff0e70812d412ed5306a46f8f40b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

# This configures collectd to accept statsd metrics. They will end up under,
# eg, <hostname>.statsd.derive-*. On a local machine they can be viewed with,
# eg, kcollectd, which is helpful for basic debugging of metrics.
#
# To use, copy this file to, eg: /etc/collectd/collectd.conf.d/fatcat_statsd.conf
# then restart collectd: sudo service collectd restart

LoadPlugin statsd

<Plugin statsd>
    Host "127.0.0.1"
    #Host "::1"
    Port "8125"
    DeleteSets     true
    DeleteCounters true
    DeleteTimers   true
    DeleteGauges   true

    TimerCount     true
    #CounterSum     false
</Plugin>