github.com/ydb-platform/ydb-go-sdk/v3@v3.57.0/metrics/histogram.go (about) 1 package metrics 2 3 // HistogramVec stores multiple dynamically created timers 4 type HistogramVec interface { 5 With(labels map[string]string) Histogram 6 } 7 8 // Histogram tracks distribution of value. 9 type Histogram interface { 10 Record(value float64) 11 }