2015-06-22 09:00:55 +00:00
|
|
|
go-metrics
|
|
|
|
==========
|
|
|
|
|
2016-02-11 14:16:52 +00:00
|
|
|
![travis build status](https://travis-ci.org/rcrowley/go-metrics.svg?branch=master)
|
|
|
|
|
|
|
|
Go port of Coda Hale's Metrics library: <https://github.com/dropwizard/metrics>.
|
2015-06-22 09:00:55 +00:00
|
|
|
|
2019-10-20 10:25:25 +00:00
|
|
|
Documentation: <https://godoc.org/github.com/rcrowley/go-metrics>.
|
2015-06-22 09:00:55 +00:00
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
|
|
|
Create and update metrics:
|
|
|
|
|
|
|
|
```go
|
|
|
|
c := metrics.NewCounter()
|
|
|
|
metrics.Register("foo", c)
|
|
|
|
c.Inc(47)
|
|
|
|
|
|
|
|
g := metrics.NewGauge()
|
|
|
|
metrics.Register("bar", g)
|
|
|
|
g.Update(47)
|
|
|
|
|
2016-10-28 17:05:01 +00:00
|
|
|
r := NewRegistry()
|
|
|
|
g := metrics.NewRegisteredFunctionalGauge("cache-evictions", r, func() int64 { return cache.getEvictionsCount() })
|
|
|
|
|
2015-06-22 09:00:55 +00:00
|
|
|
s := metrics.NewExpDecaySample(1028, 0.015) // or metrics.NewUniformSample(1028)
|
|
|
|
h := metrics.NewHistogram(s)
|
|
|
|
metrics.Register("baz", h)
|
|
|
|
h.Update(47)
|
|
|
|
|
|
|
|
m := metrics.NewMeter()
|
|
|
|
metrics.Register("quux", m)
|
|
|
|
m.Mark(47)
|
|
|
|
|
|
|
|
t := metrics.NewTimer()
|
|
|
|
metrics.Register("bang", t)
|
|
|
|
t.Time(func() {})
|
|
|
|
t.Update(47)
|
|
|
|
```
|
|
|
|
|
2016-10-28 17:05:01 +00:00
|
|
|
Register() is not threadsafe. For threadsafe metric registration use
|
|
|
|
GetOrRegister:
|
|
|
|
|
2018-02-23 09:56:08 +00:00
|
|
|
```go
|
2016-10-28 17:05:01 +00:00
|
|
|
t := metrics.GetOrRegisterTimer("account.create.latency", nil)
|
|
|
|
t.Time(func() {})
|
|
|
|
t.Update(47)
|
|
|
|
```
|
|
|
|
|
2018-02-23 09:56:08 +00:00
|
|
|
**NOTE:** Be sure to unregister short-lived meters and timers otherwise they will
|
|
|
|
leak memory:
|
|
|
|
|
|
|
|
```go
|
|
|
|
// Will call Stop() on the Meter to allow for garbage collection
|
|
|
|
metrics.Unregister("quux")
|
|
|
|
// Or similarly for a Timer that embeds a Meter
|
|
|
|
metrics.Unregister("bang")
|
|
|
|
```
|
|
|
|
|
2015-06-22 09:00:55 +00:00
|
|
|
Periodically log every metric in human-readable form to standard error:
|
|
|
|
|
|
|
|
```go
|
2016-02-11 14:16:52 +00:00
|
|
|
go metrics.Log(metrics.DefaultRegistry, 5 * time.Second, log.New(os.Stderr, "metrics: ", log.Lmicroseconds))
|
2015-06-22 09:00:55 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Periodically log every metric in slightly-more-parseable form to syslog:
|
|
|
|
|
|
|
|
```go
|
|
|
|
w, _ := syslog.Dial("unixgram", "/dev/log", syslog.LOG_INFO, "metrics")
|
|
|
|
go metrics.Syslog(metrics.DefaultRegistry, 60e9, w)
|
|
|
|
```
|
|
|
|
|
2016-02-11 14:16:52 +00:00
|
|
|
Periodically emit every metric to Graphite using the [Graphite client](https://github.com/cyberdelia/go-metrics-graphite):
|
2015-06-22 09:00:55 +00:00
|
|
|
|
|
|
|
```go
|
2016-02-11 14:16:52 +00:00
|
|
|
|
|
|
|
import "github.com/cyberdelia/go-metrics-graphite"
|
|
|
|
|
2015-06-22 09:00:55 +00:00
|
|
|
addr, _ := net.ResolveTCPAddr("tcp", "127.0.0.1:2003")
|
2016-02-11 14:16:52 +00:00
|
|
|
go graphite.Graphite(metrics.DefaultRegistry, 10e9, "metrics", addr)
|
2015-06-22 09:00:55 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Periodically emit every metric into InfluxDB:
|
|
|
|
|
2016-02-11 14:16:52 +00:00
|
|
|
**NOTE:** this has been pulled out of the library due to constant fluctuations
|
|
|
|
in the InfluxDB API. In fact, all client libraries are on their way out. see
|
|
|
|
issues [#121](https://github.com/rcrowley/go-metrics/issues/121) and
|
|
|
|
[#124](https://github.com/rcrowley/go-metrics/issues/124) for progress and details.
|
|
|
|
|
2015-06-22 09:00:55 +00:00
|
|
|
```go
|
2016-10-28 17:05:01 +00:00
|
|
|
import "github.com/vrischmann/go-metrics-influxdb"
|
2015-06-22 09:00:55 +00:00
|
|
|
|
2018-02-23 09:56:08 +00:00
|
|
|
go influxdb.InfluxDB(metrics.DefaultRegistry,
|
|
|
|
10e9,
|
|
|
|
"127.0.0.1:8086",
|
|
|
|
"database-name",
|
|
|
|
"username",
|
|
|
|
"password"
|
|
|
|
)
|
2015-06-22 09:00:55 +00:00
|
|
|
```
|
|
|
|
|
2016-02-11 14:16:52 +00:00
|
|
|
Periodically upload every metric to Librato using the [Librato client](https://github.com/mihasya/go-metrics-librato):
|
|
|
|
|
|
|
|
**Note**: the client included with this repository under the `librato` package
|
|
|
|
has been deprecated and moved to the repository linked above.
|
2015-06-22 09:00:55 +00:00
|
|
|
|
|
|
|
```go
|
2016-02-11 14:16:52 +00:00
|
|
|
import "github.com/mihasya/go-metrics-librato"
|
2015-06-22 09:00:55 +00:00
|
|
|
|
|
|
|
go librato.Librato(metrics.DefaultRegistry,
|
|
|
|
10e9, // interval
|
|
|
|
"example@example.com", // account owner email address
|
|
|
|
"token", // Librato API token
|
|
|
|
"hostname", // source
|
2016-02-11 14:16:52 +00:00
|
|
|
[]float64{0.95}, // percentiles to send
|
2015-06-22 09:00:55 +00:00
|
|
|
time.Millisecond, // time unit
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
|
|
|
Periodically emit every metric to StatHat:
|
|
|
|
|
|
|
|
```go
|
|
|
|
import "github.com/rcrowley/go-metrics/stathat"
|
|
|
|
|
|
|
|
go stathat.Stathat(metrics.DefaultRegistry, 10e9, "example@example.com")
|
|
|
|
```
|
|
|
|
|
2016-02-11 14:16:52 +00:00
|
|
|
Maintain all metrics along with expvars at `/debug/metrics`:
|
|
|
|
|
2019-10-20 10:25:25 +00:00
|
|
|
This uses the same mechanism as [the official expvar](https://golang.org/pkg/expvar/)
|
2016-02-11 14:16:52 +00:00
|
|
|
but exposed under `/debug/metrics`, which shows a json representation of all your usual expvars
|
|
|
|
as well as all your go-metrics.
|
|
|
|
|
|
|
|
|
|
|
|
```go
|
|
|
|
import "github.com/rcrowley/go-metrics/exp"
|
|
|
|
|
|
|
|
exp.Exp(metrics.DefaultRegistry)
|
|
|
|
```
|
|
|
|
|
2015-06-22 09:00:55 +00:00
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
```sh
|
|
|
|
go get github.com/rcrowley/go-metrics
|
|
|
|
```
|
|
|
|
|
|
|
|
StatHat support additionally requires their Go client:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
go get github.com/stathat/go
|
|
|
|
```
|
2016-02-11 14:16:52 +00:00
|
|
|
|
|
|
|
Publishing Metrics
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Clients are available for the following destinations:
|
|
|
|
|
2018-02-23 09:56:08 +00:00
|
|
|
* Librato - https://github.com/mihasya/go-metrics-librato
|
|
|
|
* Graphite - https://github.com/cyberdelia/go-metrics-graphite
|
|
|
|
* InfluxDB - https://github.com/vrischmann/go-metrics-influxdb
|
|
|
|
* Ganglia - https://github.com/appscode/metlia
|
|
|
|
* Prometheus - https://github.com/deathowl/go-metrics-prometheus
|
|
|
|
* DataDog - https://github.com/syntaqx/go-metrics-datadog
|
|
|
|
* SignalFX - https://github.com/pascallouisperez/go-metrics-signalfx
|