LabelNames gets label names
(start, end time.Time, matchers ...string)
| 684 | |
| 685 | // LabelNames gets label names |
| 686 | func (c *Client) LabelNames(start, end time.Time, matchers ...string) ([]string, error) { |
| 687 | result, _, err := c.querierClient.LabelNames(context.Background(), matchers, start, end) |
| 688 | return result, err |
| 689 | } |
| 690 | |
| 691 | type addOrgIDRoundTripper struct { |
| 692 | orgID string |