StatsD Agent
StatsD is a popular tool for aggregating your data into different statistical views. It provides things like counters, timers, and gauges to provide different ways to look at your data.
Last updated
StatsD is a popular tool for aggregating your data into different statistical views. It provides things like counters, timers, and gauges to provide different ways to look at your data.
StatsD can also be used to pre-aggregate your data before sending it to Hosted Graphite.
You can configure your StatsD instance to send metrics to us by following our StatsD docs in our Add-Ons and Integrations Guide.
If you haven’t installed StatsD yet, you might also find the StatsD installation instructions helpful.
We also provide a Hosted StatsD solution if you don’t have the luxury of running a server yourself, check out the documentation for Hosted StatsD to get set up with only a few clicks! Enable Hosted StatsD in your account to forward metrics to our statsd endpoint: statsd.hostedgraphite.com:8125
Like the added counters but not interested in using StatsD? Learn about our Data Views provided for all metrics. While Data Views aren’t direct equivalents to StatsD types, they provide similar ways to work with your data:
counters -> :sum (total count), :sumrate (per-second rate)
gauges -> :avg, :min, :max (aggregations of reported values)
timers -> :avg, :min, :max, :95pct, etc. (distribution-style views)
Last updated