Versions in this module Expand all Collapse all v0 v0.4.0 Mar 6, 2017 Changes in this version type Gauge + func (g *Gauge) Add(delta float64) v0.3.0 Nov 15, 2016 Changes in this version + type Counter struct + func (c *Counter) Add(delta float64) + func (c *Counter) With(labelValues ...string) metrics.Counter + type Gauge struct + func (g *Gauge) Set(value float64) + func (g *Gauge) With(labelValues ...string) metrics.Gauge + type Histogram struct + func (h *Histogram) Observe(value float64) + func (h *Histogram) With(labelValues ...string) metrics.Histogram v0.2.0 Jul 27, 2016 v0.1.0 Jun 7, 2016 Changes in this version + func NewCounter(name string) metrics.Counter + func NewGauge(name string) metrics.Gauge + func NewHistogram(name string, minValue, maxValue int64, sigfigs int, quantiles ...int) metrics.Histogram + func PublishCallbackGauge(name string, callback func() float64)