(b *labels.ScratchBuilder, symbols []string)
| 12 | } |
| 13 | |
| 14 | func (t *TimeSeriesV2) ToLabels(b *labels.ScratchBuilder, symbols []string) (labels.Labels, error) { |
| 15 | return desymbolizeLabels(b, t.GetLabelsRefs(), symbols) |
| 16 | } |
| 17 | |
| 18 | // desymbolizeLabels decodes label references, with given symbols to labels. |
| 19 | // Copied from the Prometheus: https://github.com/prometheus/prometheus/blob/v3.7.2/prompb/io/prometheus/write/v2/symbols.go#L83 |
nothing calls this directly
no test coverage detected