Versions in this module Expand all Collapse all v1 v1.0.0 Mar 24, 2023 Changes in this version + type Counter interface + Add func(delta float64) + Inc func() + With func(labelValues ...string) Counter + type Gauge interface + Add func(delta float64) + Inc func() + Set func(value float64) + With func(labelValues ...string) Gauge + type Histogram interface + Observe func(value float64) + With func(labelValues ...string) Histogram + type Provider interface + NewCounter func(name string, labelNames ...string) Counter + NewGauge func(name string, labelNames ...string) Gauge + NewHistogram func(name string, buckets []float64, labelNames ...string) Histogram + Stop func()