forked from mirrors/statsd_exporter
counter -> total.
This commit is contained in:
parent
65e9c49ca8
commit
87a3310e83
1 changed files with 3 additions and 3 deletions
|
@ -13,21 +13,21 @@ import (
|
||||||
var (
|
var (
|
||||||
eventStats = prometheus.NewCounterVec(
|
eventStats = prometheus.NewCounterVec(
|
||||||
prometheus.CounterOpts{
|
prometheus.CounterOpts{
|
||||||
Name: "statsd_bridge_events_count",
|
Name: "statsd_bridge_events_total",
|
||||||
Help: "The total number of StatsD events seen.",
|
Help: "The total number of StatsD events seen.",
|
||||||
},
|
},
|
||||||
[]string{"type"},
|
[]string{"type"},
|
||||||
)
|
)
|
||||||
networkStats = prometheus.NewCounterVec(
|
networkStats = prometheus.NewCounterVec(
|
||||||
prometheus.CounterOpts{
|
prometheus.CounterOpts{
|
||||||
Name: "statsd_bridge_packets_count",
|
Name: "statsd_bridge_packets_total",
|
||||||
Help: "The total number of StatsD packets seen.",
|
Help: "The total number of StatsD packets seen.",
|
||||||
},
|
},
|
||||||
[]string{"type"},
|
[]string{"type"},
|
||||||
)
|
)
|
||||||
configLoads = prometheus.NewCounterVec(
|
configLoads = prometheus.NewCounterVec(
|
||||||
prometheus.CounterOpts{
|
prometheus.CounterOpts{
|
||||||
Name: "statsd_bridge_config_reloads_count",
|
Name: "statsd_bridge_config_reloads_total",
|
||||||
Help: "The number of configuration reloads.",
|
Help: "The number of configuration reloads.",
|
||||||
},
|
},
|
||||||
[]string{"outcome"},
|
[]string{"outcome"},
|
||||||
|
|
Loading…
Reference in a new issue