Merge pull request #41 from prometheus/fish/fix-metric-suffix

Drop _count suffix for loaded_mappings metric
This commit is contained in:
Johannes 'fish' Ziemke 2016-05-03 09:54:20 -07:00
commit dd0b68f2d8

View file

@ -44,7 +44,7 @@ var (
[]string{"outcome"}, []string{"outcome"},
) )
mappingsCount = prometheus.NewGauge(prometheus.GaugeOpts{ mappingsCount = prometheus.NewGauge(prometheus.GaugeOpts{
Name: "statsd_exporter_loaded_mappings_count", Name: "statsd_exporter_loaded_mappings",
Help: "The current number of configured metric mappings.", Help: "The current number of configured metric mappings.",
}) })
) )