(ctx context.Context, name string, hints *storage.LabelHints, matchers ...*labels.Matcher)
| 79 | } |
| 80 | |
| 81 | func (q *blockBaseQuerier) LabelValues(ctx context.Context, name string, hints *storage.LabelHints, matchers ...*labels.Matcher) ([]string, annotations.Annotations, error) { |
| 82 | res, err := q.index.SortedLabelValues(ctx, name, hints, matchers...) |
| 83 | return res, nil, err |
| 84 | } |
| 85 | |
| 86 | func (q *blockBaseQuerier) LabelNames(ctx context.Context, hints *storage.LabelHints, matchers ...*labels.Matcher) ([]string, annotations.Annotations, error) { |
| 87 | res, err := q.index.LabelNames(ctx, matchers...) |
nothing calls this directly
no test coverage detected