Document expected delays in the size metrics

Signed-off-by: Ben Reedy <breed808@breed808.com>
This commit is contained in:
JDA88
2021-09-30 22:56:00 +02:00
committed by Ben Reedy
parent 5b92e1bd3d
commit bbefd8ac97
2 changed files with 8 additions and 4 deletions

View File

@@ -103,14 +103,14 @@ func NewLogicalDiskCollector() (Collector, error) {
FreeSpace: prometheus.NewDesc(
prometheus.BuildFQName(Namespace, subsystem, "free_bytes"),
"Free space in bytes (LogicalDisk.PercentFreeSpace)",
"Free space in bytes, updates every 10-15 min (LogicalDisk.PercentFreeSpace)",
[]string{"volume"},
nil,
),
TotalSpace: prometheus.NewDesc(
prometheus.BuildFQName(Namespace, subsystem, "size_bytes"),
"Total space in bytes (LogicalDisk.PercentFreeSpace_Base)",
"Total space in bytes, updates every 10-15 min (LogicalDisk.PercentFreeSpace_Base)",
[]string{"volume"},
nil,
),