11 lines
173 B
Go
Raw Normal View History

2015-06-22 12:00:55 +03:00
package metrics
// Gauges hold an int64 value that can be set arbitrarily.
type Gauge interface {
Snapshot() Gauge
Update(int64)
Dec(int64)
Inc(int64)
2015-06-22 12:00:55 +03:00
Value() int64
}