statefulHistogramInstrument writes observed samples into maintained histogram state.
| 20 | |
| 21 | // statefulHistogramInstrument writes observed samples into maintained histogram state. |
| 22 | type statefulHistogramInstrument struct { |
| 23 | backend meterBackend |
| 24 | desc *instrumentDescriptor |
| 25 | base []LabelSet |
| 26 | } |
| 27 | |
| 28 | // stagedHistogram holds one in-cycle histogram sample for a single series identity. |
| 29 | type stagedHistogram struct { |
nothing calls this directly
no outgoing calls
no test coverage detected