MCPcopy Index your code
hub / github.com/cortexproject/cortex / Series

Method Series

integration/e2ecortex/client.go:674–677  ·  view source on GitHub ↗

Series finds series by label matchers.

(matches []string, start, end time.Time)

Source from the content-addressed store, hash-verified

672
673// Series finds series by label matchers.
674func (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
680func (c *Client) LabelValues(label string, start, end time.Time, matches []string) (model.LabelValues, error) {

Calls 1

SeriesMethod · 0.65