LabelValues gets label values
(label string, start, end time.Time, matches []string)
| 678 | |
| 679 | // LabelValues gets label values |
| 680 | func (c *Client) LabelValues(label string, start, end time.Time, matches []string) (model.LabelValues, error) { |
| 681 | result, _, err := c.querierClient.LabelValues(context.Background(), label, matches, start, end) |
| 682 | return result, err |
| 683 | } |
| 684 | |
| 685 | // LabelNames gets label names |
| 686 | func (c *Client) LabelNames(start, end time.Time, matchers ...string) ([]string, error) { |