Anton Evangelatov be2aec092d metrics: expvar support for ResettingTimer (#16878) 6 years ago
..
exp be2aec092d metrics: expvar support for ResettingTimer (#16878) 6 years ago
influxdb ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
librato cd9a1d5b37 metrics: golint updates for this or self warning (#16635) 6 years ago
FORK.md ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
LICENSE ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
README.md ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
counter.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
counter_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
debug.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
debug_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
disk.go bfbcfbe4a9 all: fix license headers one more time 8 years ago
disk_linux.go b9b3efb09f all: fix ineffectual assignments and remove uses of crypto.Sha3 7 years ago
disk_nop.go bfbcfbe4a9 all: fix license headers one more time 8 years ago
ewma.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
ewma_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
gauge.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
gauge_float64.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
gauge_float64_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
gauge_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
graphite.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
graphite_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
healthcheck.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
histogram.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
histogram_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
init_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
json.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
json_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
log.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
memory.md ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
meter.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
meter_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
metrics.go dcca613a0b swarm: initial instrumentation (#15969) 6 years ago
metrics_test.go 3ca3fffdf0 metrics: fix flaky Example metrics test (#16222) 6 years ago
opentsdb.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
opentsdb_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
registry.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
registry_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
resetting_timer.go be2aec092d metrics: expvar support for ResettingTimer (#16878) 6 years ago
resetting_timer_test.go be2aec092d metrics: expvar support for ResettingTimer (#16878) 6 years ago
runtime.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
runtime_cgo.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
runtime_gccpufraction.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
runtime_no_cgo.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
runtime_no_gccpufraction.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
runtime_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
sample.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
sample_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
syslog.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
timer.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
timer_test.go 3ca3fffdf0 metrics: fix flaky Example metrics test (#16222) 6 years ago
validate.sh ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
writer.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago
writer_test.go ae9f97221a metrics: pull library and introduce ResettingTimer and InfluxDB reporter (#15910) 6 years ago

README.md

go-metrics

travis build status

Go port of Coda Hale's Metrics library: https://github.com/dropwizard/metrics.

Documentation: http://godoc.org/github.com/rcrowley/go-metrics.

Usage

Create and update metrics:

c := metrics.NewCounter()
metrics.Register("foo", c)
c.Inc(47)

g := metrics.NewGauge()
metrics.Register("bar", g)
g.Update(47)

r := NewRegistry()
g := metrics.NewRegisteredFunctionalGauge("cache-evictions", r, func() int64 { return cache.getEvictionsCount() })

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)

Register() is not threadsafe. For threadsafe metric registration use GetOrRegister:

t := metrics.GetOrRegisterTimer("account.create.latency", nil)
t.Time(func() {})
t.Update(47)

NOTE: Be sure to unregister short-lived meters and timers otherwise they will leak memory:

// 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")

Periodically log every metric in human-readable form to standard error:

go metrics.Log(metrics.DefaultRegistry, 5 * time.Second, log.New(os.Stderr, "metrics: ", log.Lmicroseconds))

Periodically log every metric in slightly-more-parseable form to syslog:

w, _ := syslog.Dial("unixgram", "/dev/log", syslog.LOG_INFO, "metrics")
go metrics.Syslog(metrics.DefaultRegistry, 60e9, w)

Periodically emit every metric to Graphite using the Graphite client:


import "github.com/cyberdelia/go-metrics-graphite"

addr, _ := net.ResolveTCPAddr("tcp", "127.0.0.1:2003")
go graphite.Graphite(metrics.DefaultRegistry, 10e9, "metrics", addr)

Periodically emit every metric into InfluxDB:

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 and #124 for progress and details.

import "github.com/vrischmann/go-metrics-influxdb"

go influxdb.InfluxDB(metrics.DefaultRegistry,
  10e9, 
  "127.0.0.1:8086", 
  "database-name", 
  "username", 
  "password"
)

Periodically upload every metric to Librato using the Librato client:

Note: the client included with this repository under the librato package has been deprecated and moved to the repository linked above.

import "github.com/mihasya/go-metrics-librato"

go librato.Librato(metrics.DefaultRegistry,
    10e9,                  // interval
    "example@example.com", // account owner email address
    "token",               // Librato API token
    "hostname",            // source
    []float64{0.95},       // percentiles to send
    time.Millisecond,      // time unit
)

Periodically emit every metric to StatHat:

import "github.com/rcrowley/go-metrics/stathat"

go stathat.Stathat(metrics.DefaultRegistry, 10e9, "example@example.com")

Maintain all metrics along with expvars at /debug/metrics:

This uses the same mechanism as the official expvar but exposed under /debug/metrics, which shows a json representation of all your usual expvars as well as all your go-metrics.

import "github.com/rcrowley/go-metrics/exp"

exp.Exp(metrics.DefaultRegistry)

Installation

go get github.com/rcrowley/go-metrics

StatHat support additionally requires their Go client:

go get github.com/stathat/go

Publishing Metrics

Clients are available for the following destinations: