1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# statsd
[](https://travis-ci.org/alexcesaro/statsd) [](http://gocover.io/gopkg.in/alexcesaro/statsd.v1) [](https://godoc.org/gopkg.in/alexcesaro/statsd.v1)
## Introduction
statsd is a simple and efficient [Statsd](https://github.com/etsy/statsd)
client.
See the [benchmark](https://github.com/alexcesaro/statsdbench) for a comparison
with other Go StatsD clients.
## Features
- Supports all StatsD metrics: counter, gauge, timing and set
- Supports Datadog and InfluxDB tags
- Fast and GC-friendly: Client's methods do not allocate
- Simple API
- 100% test coverage
- Versioned API using gopkg.in
## Documentation
https://godoc.org/gopkg.in/alexcesaro/statsd.v1
## Download
go get gopkg.in/alexcesaro/statsd.v1
## Example
See the [examples in the documentation](https://godoc.org/gopkg.in/alexcesaro/statsd.v1#example-package).
## License
[MIT](LICENSE)
## Contribute
Do you have any question the documentation does not answer? Is there a use case
that you feel is common and is not well-addressed by the current API?
If so you are more than welcome to ask questions in the
[thread on golang-nuts](https://groups.google.com/d/topic/golang-nuts/Tz6t4_iLgnw/discussion)
or open an issue or send a pull-request here on Github.
|