2018-11-30 00:51:12 +00:00
|
|
|
// +build windows
|
|
|
|
|
2016-09-19 07:02:05 +00:00
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2018-04-05 05:27:26 +00:00
|
|
|
"github.com/prometheus/common/log"
|
2016-09-19 07:02:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2020-02-09 20:09:26 +00:00
|
|
|
registerCollector("system", NewSystemCollector, "System")
|
2016-09-19 07:02:05 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 07:55:51 +00:00
|
|
|
// A SystemCollector is a Prometheus collector for WMI metrics
|
2016-09-19 07:02:05 +00:00
|
|
|
type SystemCollector struct {
|
|
|
|
ContextSwitchesTotal *prometheus.Desc
|
|
|
|
ExceptionDispatchesTotal *prometheus.Desc
|
|
|
|
ProcessorQueueLength *prometheus.Desc
|
|
|
|
SystemCallsTotal *prometheus.Desc
|
|
|
|
SystemUpTime *prometheus.Desc
|
|
|
|
Threads *prometheus.Desc
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSystemCollector ...
|
|
|
|
func NewSystemCollector() (Collector, error) {
|
|
|
|
const subsystem = "system"
|
|
|
|
|
|
|
|
return &SystemCollector{
|
|
|
|
ContextSwitchesTotal: prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, subsystem, "context_switches_total"),
|
2018-04-29 15:14:53 +00:00
|
|
|
"Total number of context switches (WMI source: PerfOS_System.ContextSwitchesPersec)",
|
2016-09-19 07:02:05 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
ExceptionDispatchesTotal: prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, subsystem, "exception_dispatches_total"),
|
2018-04-29 15:14:53 +00:00
|
|
|
"Total number of exceptions dispatched (WMI source: PerfOS_System.ExceptionDispatchesPersec)",
|
2016-09-19 07:02:05 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
ProcessorQueueLength: prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, subsystem, "processor_queue_length"),
|
2018-04-29 15:14:53 +00:00
|
|
|
"Length of processor queue (WMI source: PerfOS_System.ProcessorQueueLength)",
|
2016-09-19 07:02:05 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
SystemCallsTotal: prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, subsystem, "system_calls_total"),
|
2018-04-29 15:14:53 +00:00
|
|
|
"Total number of system calls (WMI source: PerfOS_System.SystemCallsPersec)",
|
2016-09-19 07:02:05 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
SystemUpTime: prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, subsystem, "system_up_time"),
|
2018-04-29 15:14:53 +00:00
|
|
|
"System boot time (WMI source: PerfOS_System.SystemUpTime)",
|
2016-09-19 07:02:05 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
Threads: prometheus.NewDesc(
|
|
|
|
prometheus.BuildFQName(Namespace, subsystem, "threads"),
|
2018-04-29 15:14:53 +00:00
|
|
|
"Current number of threads (WMI source: PerfOS_System.Threads)",
|
2016-09-19 07:02:05 +00:00
|
|
|
nil,
|
|
|
|
nil,
|
|
|
|
),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect sends the metric values for each metric
|
|
|
|
// to the provided prometheus Metric channel.
|
2019-04-05 13:59:40 +00:00
|
|
|
func (c *SystemCollector) Collect(ctx *ScrapeContext, ch chan<- prometheus.Metric) error {
|
2019-09-25 04:06:31 +00:00
|
|
|
if desc, err := c.collect(ctx, ch); err != nil {
|
2018-04-05 05:27:26 +00:00
|
|
|
log.Error("failed collecting system metrics:", desc, err)
|
2016-09-19 07:02:05 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-04 19:35:33 +00:00
|
|
|
// Win32_PerfRawData_PerfOS_System docs:
|
|
|
|
// - https://web.archive.org/web/20050830140516/http://msdn.microsoft.com/library/en-us/wmisdk/wmi/win32_perfrawdata_perfos_system.asp
|
2019-09-25 04:06:31 +00:00
|
|
|
type system struct {
|
|
|
|
ContextSwitchesPersec float64 `perflib:"Context Switches/sec"`
|
|
|
|
ExceptionDispatchesPersec float64 `perflib:"Exception Dispatches/sec"`
|
|
|
|
ProcessorQueueLength float64 `perflib:"Processor Queue Length"`
|
|
|
|
SystemCallsPersec float64 `perflib:"System Calls/sec"`
|
|
|
|
SystemUpTime float64 `perflib:"System Up Time"`
|
|
|
|
Threads float64 `perflib:"Threads"`
|
2016-09-19 07:02:05 +00:00
|
|
|
}
|
|
|
|
|
2019-09-25 04:06:31 +00:00
|
|
|
func (c *SystemCollector) collect(ctx *ScrapeContext, ch chan<- prometheus.Metric) (*prometheus.Desc, error) {
|
|
|
|
var dst []system
|
|
|
|
if err := unmarshalObject(ctx.perfObjects["System"], &dst); err != nil {
|
2016-09-19 07:02:05 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-11-15 08:07:04 +00:00
|
|
|
|
2016-09-19 07:02:05 +00:00
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.ContextSwitchesTotal,
|
2018-04-29 15:14:53 +00:00
|
|
|
prometheus.CounterValue,
|
2019-09-25 04:06:31 +00:00
|
|
|
dst[0].ContextSwitchesPersec,
|
2016-09-19 07:02:05 +00:00
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.ExceptionDispatchesTotal,
|
2018-04-29 15:14:53 +00:00
|
|
|
prometheus.CounterValue,
|
2019-09-25 04:06:31 +00:00
|
|
|
dst[0].ExceptionDispatchesPersec,
|
2016-09-19 07:02:05 +00:00
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.ProcessorQueueLength,
|
|
|
|
prometheus.GaugeValue,
|
2019-09-25 04:06:31 +00:00
|
|
|
dst[0].ProcessorQueueLength,
|
2016-09-19 07:02:05 +00:00
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.SystemCallsTotal,
|
2018-04-29 15:14:53 +00:00
|
|
|
prometheus.CounterValue,
|
2019-09-25 04:06:31 +00:00
|
|
|
dst[0].SystemCallsPersec,
|
2016-09-19 07:02:05 +00:00
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.SystemUpTime,
|
|
|
|
prometheus.GaugeValue,
|
2019-09-25 04:06:31 +00:00
|
|
|
dst[0].SystemUpTime,
|
2016-09-19 07:02:05 +00:00
|
|
|
)
|
|
|
|
ch <- prometheus.MustNewConstMetric(
|
|
|
|
c.Threads,
|
|
|
|
prometheus.GaugeValue,
|
2019-09-25 04:06:31 +00:00
|
|
|
dst[0].Threads,
|
2016-09-19 07:02:05 +00:00
|
|
|
)
|
|
|
|
return nil, nil
|
|
|
|
}
|