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

Method LabelValues

integration/e2ecortex/client.go:680–683  ·  view source on GitHub ↗

LabelValues gets label values

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

Source from the content-addressed store, hash-verified

678
679// LabelValues gets label values
680func (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
686func (c *Client) LabelNames(start, end time.Time, matchers ...string) ([]string, error) {

Calls 1

LabelValuesMethod · 0.65