update prometheus client golang

update docker/distribution lib

Signed-off-by: Hilário Coelho <hilario.coelho@securityside.com>
This commit is contained in:
Hilário Coelho
2022-05-06 11:57:02 +01:00
committed by Alex Ellis
parent 8065a4baa2
commit a530b9dd63
21 changed files with 237 additions and 438 deletions

View File

@ -45,6 +45,14 @@ const (
// scrape a target.
MetricsPathLabel = "__metrics_path__"
// ScrapeIntervalLabel is the name of the label that holds the scrape interval
// used to scrape a target.
ScrapeIntervalLabel = "__scrape_interval__"
// ScrapeTimeoutLabel is the name of the label that holds the scrape
// timeout used to scrape a target.
ScrapeTimeoutLabel = "__scrape_timeout__"
// ReservedLabelPrefix is a prefix which is not legal in user-supplied
// label names.
ReservedLabelPrefix = "__"