glide up
This commit is contained in:
2
vendor/github.com/go-kit/kit/metrics/pcp/pcp.go
generated
vendored
2
vendor/github.com/go-kit/kit/metrics/pcp/pcp.go
generated
vendored
@@ -82,7 +82,7 @@ func (g *Gauge) With(labelValues ...string) metrics.Gauge { return g }
|
||||
func (g *Gauge) Set(value float64) { g.g.Set(value) }
|
||||
|
||||
// Add adds a value to the gauge.
|
||||
func (g *Gauge) Add(delta float64) { g.g.Inc(delta) }
|
||||
func (g *Gauge) Add(value float64) { g.g.Inc(value) }
|
||||
|
||||
// Histogram wraps a speed Histogram.
|
||||
type Histogram struct {
|
||||
|
||||
Reference in New Issue
Block a user