78 lines
1.8 KiB
Go
78 lines
1.8 KiB
Go
// returns data points from Win32_ComputerSystem
|
|
// https://msdn.microsoft.com/en-us/library/aa394102 - Win32_ComputerSystem class
|
|
|
|
package collector
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/StackExchange/wmi"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
func init() {
|
|
Factories["cs"] = NewCSCollector
|
|
}
|
|
|
|
// A CSCollector is a Prometheus collector for WMI metrics
|
|
type CSCollector struct {
|
|
PhysicalMemoryBytes *prometheus.Desc
|
|
LogicalProcessors *prometheus.Desc
|
|
}
|
|
|
|
// NewCSCollector ...
|
|
func NewCSCollector() (Collector, error) {
|
|
const subsystem = "cs"
|
|
|
|
return &CSCollector{
|
|
LogicalProcessors: prometheus.NewDesc(
|
|
prometheus.BuildFQName(Namespace, subsystem, "logical_processors"),
|
|
"ComputerSystem.NumberOfLogicalProcessors",
|
|
nil,
|
|
nil,
|
|
),
|
|
PhysicalMemoryBytes: prometheus.NewDesc(
|
|
prometheus.BuildFQName(Namespace, subsystem, "physical_memory_bytes"),
|
|
"ComputerSystem.TotalPhysicalMemory",
|
|
nil,
|
|
nil,
|
|
),
|
|
}, nil
|
|
}
|
|
|
|
// Collect sends the metric values for each metric
|
|
// to the provided prometheus Metric channel.
|
|
func (c *CSCollector) Collect(ch chan<- prometheus.Metric) error {
|
|
if desc, err := c.collect(ch); err != nil {
|
|
log.Println("[ERROR] failed collecting cs metrics:", desc, err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Win32_ComputerSystem struct {
|
|
NumberOfLogicalProcessors uint32
|
|
TotalPhysicalMemory uint64
|
|
}
|
|
|
|
func (c *CSCollector) collect(ch chan<- prometheus.Metric) (*prometheus.Desc, error) {
|
|
var dst []Win32_ComputerSystem
|
|
if err := wmi.Query(wmi.CreateQuery(&dst, ""), &dst); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.LogicalProcessors,
|
|
prometheus.GaugeValue,
|
|
float64(dst[0].NumberOfLogicalProcessors),
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
c.PhysicalMemoryBytes,
|
|
prometheus.GaugeValue,
|
|
float64(dst[0].TotalPhysicalMemory),
|
|
)
|
|
|
|
return nil, nil
|
|
}
|