summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/windows/collect_system.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/windows/collect_system.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_system.go b/src/go/collectors/go.d.plugin/modules/windows/collect_system.go
new file mode 100644
index 000000000..5f0bc9131
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/windows/collect_system.go
@@ -0,0 +1,29 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package windows
+
+import (
+ "time"
+
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
+)
+
+const (
+ metricSysSystemUpTime = "windows_system_system_up_time"
+ metricSysThreads = "windows_system_threads"
+)
+
+func (w *Windows) collectSystem(mx map[string]int64, pms prometheus.Series) {
+ if !w.cache.collection[collectorSystem] {
+ w.cache.collection[collectorSystem] = true
+ w.addSystemCharts()
+ }
+
+ px := "system_"
+ if pm := pms.FindByName(metricSysSystemUpTime); pm.Len() > 0 {
+ mx[px+"up_time"] = time.Now().Unix() - int64(pm.Max())
+ }
+ if pm := pms.FindByName(metricSysThreads); pm.Len() > 0 {
+ mx[px+"threads"] = int64(pm.Max())
+ }
+}