Fix typo on description of read_time_seconds_total (#1057)

Fix typo on unit description of metric `*read_time_seconds_total` from milliseconds to seconds.

Signed-off-by: Marco Tulio R Braga <marco.tulio@mtulio.eng.br>
This commit is contained in:
Marco Tulio R Braga 2018-09-02 03:46:45 -04:00 committed by Ben Kochie
commit 05e55bddad
3 changed files with 3 additions and 3 deletions

View file

@ -96,7 +96,7 @@ func NewDiskstatsCollector() (Collector, error) {
{
desc: prometheus.NewDesc(
prometheus.BuildFQName(namespace, diskSubsystem, "read_time_seconds_total"),
"The total number of milliseconds spent by all reads.",
"The total number of seconds spent by all reads.",
diskLabelNames,
nil,
), valueType: prometheus.CounterValue,