Fix uptime unit

This commit is contained in:
Melora Hugues 2024-12-07 17:22:49 +01:00
parent 5df32a9b98
commit 79476151b5
Signed by: faercol
SSH key fingerprint: SHA256:lzUKsKDIw1w0bcLnoBu84oYJOnLmi7SeKetszpyDCFY

View file

@ -82,7 +82,7 @@ func New() *UptimeCollector {
procFileLocation: procUptimeLocation, procFileLocation: procUptimeLocation,
uptimeFreq: 1 * time.Second, uptimeFreq: 1 * time.Second,
uptime: 0, uptime: 0,
uptimeProm: prometheus.NewGauge(prometheus.GaugeOpts{Namespace: "system", Name: "uptime_nanosec", Help: "System uptime in nanoseconds"}), uptimeProm: prometheus.NewGauge(prometheus.GaugeOpts{Namespace: "system", Name: "uptime_sec", Help: "System uptime in seconds"}),
} }
} }