netdev: Change valueType to CounterValue (#749)

All the metric only goes up, so the type should be counter.
This also add _total to all the metric name.

Fix: #747
This commit is contained in:
Kristian Klausen 2017-12-06 13:58:35 +01:00 committed by Ben Kochie
parent 1527789f76
commit a96f1738b3

View file

@ -59,7 +59,7 @@ func (c *netDevCollector) Update(ch chan<- prometheus.Metric) error {
desc, ok := c.metricDescs[key]
if !ok {
desc = prometheus.NewDesc(
prometheus.BuildFQName(namespace, c.subsystem, key),
prometheus.BuildFQName(namespace, c.subsystem, key + "_total"),
fmt.Sprintf("Network device statistic %s.", key),
[]string{"device"},
nil,
@ -70,7 +70,7 @@ func (c *netDevCollector) Update(ch chan<- prometheus.Metric) error {
if err != nil {
return fmt.Errorf("invalid value %s in netstats: %s", value, err)
}
ch <- prometheus.MustNewConstMetric(desc, prometheus.GaugeValue, v, dev)
ch <- prometheus.MustNewConstMetric(desc, prometheus.CounterValue, v, dev)
}
}
return nil