statsd-datadog

DataDog-flavored StatsD client.

https://bitbucket.org/dpwiz/statsd-datadog

Latest on Hackage:0.2.0.0

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

MIT licensed by Alexander Bondarenko
Maintained by [email protected]

StatsD client for UDP protocol.

import Network.StatsD

main = do
    sd <- connectStatsD "localhost" "8125"
    sendStatsDIO sd (counter_ "launches")
    sendStatsDIO sd (event "Datadog extensions" "DD Agent provides a statsd protocol extension for events.")