Series finds series by label matchers.
(matches []string, start, end time.Time)
| 672 | |
| 673 | // Series finds series by label matchers. |
| 674 | func (c *Client) Series(matches []string, start, end time.Time) ([]model.LabelSet, error) { |
| 675 | result, _, err := c.querierClient.Series(context.Background(), matches, start, end) |
| 676 | return result, err |
| 677 | } |
| 678 | |
| 679 | // LabelValues gets label values |
| 680 | func (c *Client) LabelValues(label string, start, end time.Time, matches []string) (model.LabelValues, error) { |