diff --git a/collector/cpu_openbsd.go b/collector/cpu_openbsd.go index e4ca1a55..0b05d551 100644 --- a/collector/cpu_openbsd.go +++ b/collector/cpu_openbsd.go @@ -39,11 +39,7 @@ func init() { func NewCpuCollector() (Collector, error) { return &cpuCollector{ - cpu: typedDesc{prometheus.NewDesc( - prometheus.BuildFQName(namespace, "cpu", "seconds_total"), - "Seconds the CPU spent in each mode.", - []string{"cpu", "mode"}, nil, - ), prometheus.CounterValue}, + cpu: typedDesc{nodeCpuSecondsDesc, prometheus.CounterValue}, }, nil }