diff options
Diffstat (limited to 'extra/deployment/collectd_statsd.conf')
-rw-r--r-- | extra/deployment/collectd_statsd.conf | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/deployment/collectd_statsd.conf b/extra/deployment/collectd_statsd.conf new file mode 100644 index 00000000..a434ed9f --- /dev/null +++ b/extra/deployment/collectd_statsd.conf @@ -0,0 +1,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> |