A StatsD client for Go.
import (
"github.com/cv-library/statsd"
)
func main() {
statsd.Address = "localhost:8125"
timer := statsd.Timer()
// Do stuff
// Note: Lack of support for sampling yet.
timer.send("metric.name", "metric.name2")
}
Released under the MIT license. See LICENSE.md
file for details.