Merge pull request #1979 from prometheus/fabxc-patch-1-1

storage: fix Querier interface documentation
This commit is contained in:
Björn Rabenstein 2016-09-12 11:39:25 +02:00 committed by GitHub
commit 3fd992d2d1

View file

@ -73,12 +73,10 @@ type Querier interface {
// have no samples in the specified interval from the returned map. In // have no samples in the specified interval from the returned map. In
// doubt, specify model.Earliest for from and model.Latest for through. // doubt, specify model.Earliest for from and model.Latest for through.
MetricsForLabelMatchers(from, through model.Time, matcherSets ...metric.LabelMatchers) ([]metric.Metric, error) MetricsForLabelMatchers(from, through model.Time, matcherSets ...metric.LabelMatchers) ([]metric.Metric, error)
// LastSampleForFingerprint returns the last sample that has been // LastSampleForLabelMatchers returns the last samples that have been
// ingested for the given sets of label matchers. If this instance of the // ingested for the time series matching the given set of label matchers.
// Storage has never ingested a sample for the provided fingerprint (or // The label matching behavior is the same as in MetricsForLabelMatchers.
// the last ingestion is so long ago that the series has been archived), // All returned samples are between the specified cutoff time and now.
// ZeroSample is returned. The label matching behavior is the same as in
// MetricsForLabelMatchers.
LastSampleForLabelMatchers(cutoff model.Time, matcherSets ...metric.LabelMatchers) (model.Vector, error) LastSampleForLabelMatchers(cutoff model.Time, matcherSets ...metric.LabelMatchers) (model.Vector, error)
// Get all of the label values that are associated with a given label name. // Get all of the label values that are associated with a given label name.
LabelValuesForLabelName(model.LabelName) (model.LabelValues, error) LabelValuesForLabelName(model.LabelName) (model.LabelValues, error)