| 17 | var _ metric = (*histogram)(nil) |
| 18 | |
| 19 | type histogram struct { |
| 20 | metricName string |
| 21 | nameCount string |
| 22 | nameSum string |
| 23 | nameBucket string |
| 24 | buckets []float64 |
| 25 | bucketLabels []string |
| 26 | externalLabels map[string]string |
| 27 | |
| 28 | seriesMtx sync.Mutex |
| 29 | series map[uint64]*histogramSeries |
| 30 | seriesDemand *Cardinality |
| 31 | |
| 32 | lifecycler Limiter |
| 33 | |
| 34 | traceIDLabelName string |
| 35 | } |
| 36 | |
| 37 | type histogramSeries struct { |
| 38 | countLabels labels.Labels |
nothing calls this directly
no outgoing calls
no test coverage detected