| 1307 | } |
| 1308 | |
| 1309 | type constHistogram struct { |
| 1310 | desc *Desc |
| 1311 | count uint64 |
| 1312 | sum float64 |
| 1313 | buckets map[float64]uint64 |
| 1314 | labelPairs []*dto.LabelPair |
| 1315 | createdTs *timestamppb.Timestamp |
| 1316 | } |
| 1317 | |
| 1318 | func (h *constHistogram) Desc() *Desc { |
| 1319 | return h.desc |
nothing calls this directly
no outgoing calls
no test coverage detected