Merge pull request #111 from fabxc/labelnames

Replace hidden label prefix with meta prefix.
This commit is contained in:
Julius Volz 2015-04-22 12:33:43 +02:00
commit 608ec8b69e
1 changed files with 4 additions and 4 deletions

View File

@ -34,10 +34,10 @@ const (
// label names.
ReservedLabelPrefix = "__"
// HiddenLabelPrefix is a prefix which is legal in user-supplied label names
// but will not appear in the eventual metrics.
// Reserved labels may be excepted from that rule.
HiddenLabelPrefix = "_"
// MetaLabelPrefix is a prefix for labels that provide meta information.
// Labels with this prefix are used for intermediate label processing and
// will not be attached to time series.
MetaLabelPrefix = "__meta_"
// JobLabel is the label name indicating the job from which a timeseries
// was scraped.