retrieval: remove metric namespaces

This commit is contained in:
Fabian Reinartz 2016-11-23 09:17:04 +01:00
parent d7f4f8b879
commit 47623202c7

View file

@ -36,56 +36,46 @@ const (
scrapeHealthMetricName = "up" scrapeHealthMetricName = "up"
scrapeDurationMetricName = "scrape_duration_seconds" scrapeDurationMetricName = "scrape_duration_seconds"
scrapeSamplesMetricName = "scrape_samples_scraped" scrapeSamplesMetricName = "scrape_samples_scraped"
// Constants for instrumentation.
namespace = "prometheus"
interval = "interval"
scrapeJob = "scrape_job"
) )
var ( var (
targetIntervalLength = prometheus.NewSummaryVec( targetIntervalLength = prometheus.NewSummaryVec(
prometheus.SummaryOpts{ prometheus.SummaryOpts{
Namespace: namespace, Name: "prometheus_target_interval_length_seconds",
Name: "target_interval_length_seconds",
Help: "Actual intervals between scrapes.", Help: "Actual intervals between scrapes.",
Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001}, Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001},
}, },
[]string{interval}, []string{"interval"},
) )
targetSkippedScrapes = prometheus.NewCounterVec( targetSkippedScrapes = prometheus.NewCounterVec(
prometheus.CounterOpts{ prometheus.CounterOpts{
Namespace: namespace, Name: "prometheus_target_skipped_scrapes_total",
Name: "target_skipped_scrapes_total", Help: "Total number of scrapes that were skipped because the metric storage was throttled.",
Help: "Total number of scrapes that were skipped because the metric storage was throttled.",
}, },
[]string{interval}, []string{"interval"},
) )
targetReloadIntervalLength = prometheus.NewSummaryVec( targetReloadIntervalLength = prometheus.NewSummaryVec(
prometheus.SummaryOpts{ prometheus.SummaryOpts{
Namespace: namespace, Name: "prometheus_target_reload_length_seconds",
Name: "target_reload_length_seconds",
Help: "Actual interval to reload the scrape pool with a given configuration.", Help: "Actual interval to reload the scrape pool with a given configuration.",
Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001}, Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001},
}, },
[]string{interval}, []string{"interval"},
) )
targetSyncIntervalLength = prometheus.NewSummaryVec( targetSyncIntervalLength = prometheus.NewSummaryVec(
prometheus.SummaryOpts{ prometheus.SummaryOpts{
Namespace: namespace, Name: "prometheus_target_sync_length_seconds",
Name: "target_sync_length_seconds",
Help: "Actual interval to sync the scrape pool.", Help: "Actual interval to sync the scrape pool.",
Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001}, Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001},
}, },
[]string{scrapeJob}, []string{"scrape_job"},
) )
targetScrapePoolSyncsCounter = prometheus.NewCounterVec( targetScrapePoolSyncsCounter = prometheus.NewCounterVec(
prometheus.CounterOpts{ prometheus.CounterOpts{
Namespace: namespace, Name: "prometheus_target_scrape_pool_sync_total",
Name: "target_scrape_pool_sync_total", Help: "Total number of syncs that were executed on a scrape pool.",
Help: "Total number of syncs that were executed on a scrape pool.",
}, },
[]string{scrapeJob}, []string{"scrape_job"},
) )
) )