summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/windows/windows.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/windows/windows.go169
1 files changed, 169 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/windows/windows.go b/src/go/collectors/go.d.plugin/modules/windows/windows.go
new file mode 100644
index 000000000..a37a64dff
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/windows/windows.go
@@ -0,0 +1,169 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package windows
+
+import (
+ _ "embed"
+ "errors"
+ "time"
+
+ "github.com/netdata/netdata/go/go.d.plugin/agent/module"
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
+)
+
+//go:embed "config_schema.json"
+var configSchema string
+
+func init() {
+ module.Register("windows", module.Creator{
+ JobConfigSchema: configSchema,
+ Defaults: module.Defaults{
+ UpdateEvery: 5,
+ },
+ Create: func() module.Module { return New() },
+ })
+}
+
+func New() *Windows {
+ return &Windows{
+ Config: Config{
+ HTTP: web.HTTP{
+ Client: web.Client{
+ Timeout: web.Duration(time.Second * 5),
+ },
+ },
+ },
+ cache: cache{
+ collection: make(map[string]bool),
+ collectors: make(map[string]bool),
+ cores: make(map[string]bool),
+ nics: make(map[string]bool),
+ volumes: make(map[string]bool),
+ thermalZones: make(map[string]bool),
+ processes: make(map[string]bool),
+ iis: make(map[string]bool),
+ adcs: make(map[string]bool),
+ services: make(map[string]bool),
+ netFrameworkCLRExceptions: make(map[string]bool),
+ netFrameworkCLRInterops: make(map[string]bool),
+ netFrameworkCLRJIT: make(map[string]bool),
+ netFrameworkCLRLoading: make(map[string]bool),
+ netFrameworkCLRLocksThreads: make(map[string]bool),
+ netFrameworkCLRMemory: make(map[string]bool),
+ netFrameworkCLRRemoting: make(map[string]bool),
+ netFrameworkCLRSecurity: make(map[string]bool),
+ mssqlInstances: make(map[string]bool),
+ mssqlDBs: make(map[string]bool),
+ exchangeWorkload: make(map[string]bool),
+ exchangeLDAP: make(map[string]bool),
+ exchangeHTTPProxy: make(map[string]bool),
+ hypervVMMem: make(map[string]bool),
+ hypervVMDevices: make(map[string]bool),
+ hypervVMInterfaces: make(map[string]bool),
+ hypervVswitch: make(map[string]bool),
+ },
+ charts: &module.Charts{},
+ }
+}
+
+type Config struct {
+ web.HTTP `yaml:",inline" json:""`
+ UpdateEvery int `yaml:"update_every" json:"update_every"`
+}
+
+type (
+ Windows struct {
+ module.Base
+ Config `yaml:",inline" json:""`
+
+ charts *module.Charts
+
+ prom prometheus.Prometheus
+
+ cache cache
+ }
+ cache struct {
+ cores map[string]bool
+ volumes map[string]bool
+ nics map[string]bool
+ thermalZones map[string]bool
+ processes map[string]bool
+ iis map[string]bool
+ adcs map[string]bool
+ mssqlInstances map[string]bool
+ mssqlDBs map[string]bool
+ services map[string]bool
+ netFrameworkCLRExceptions map[string]bool
+ netFrameworkCLRInterops map[string]bool
+ netFrameworkCLRJIT map[string]bool
+ netFrameworkCLRLoading map[string]bool
+ netFrameworkCLRLocksThreads map[string]bool
+ netFrameworkCLRMemory map[string]bool
+ netFrameworkCLRRemoting map[string]bool
+ netFrameworkCLRSecurity map[string]bool
+ collectors map[string]bool
+ collection map[string]bool
+ exchangeWorkload map[string]bool
+ exchangeLDAP map[string]bool
+ exchangeHTTPProxy map[string]bool
+ hypervVMMem map[string]bool
+ hypervVMDevices map[string]bool
+ hypervVMInterfaces map[string]bool
+ hypervVswitch map[string]bool
+ }
+)
+
+func (w *Windows) Configuration() any {
+ return w.Config
+}
+
+func (w *Windows) Init() error {
+ if err := w.validateConfig(); err != nil {
+ w.Errorf("config validation: %v", err)
+ return err
+ }
+
+ prom, err := w.initPrometheusClient()
+ if err != nil {
+ w.Errorf("init prometheus clients: %v", err)
+ return err
+ }
+ w.prom = prom
+
+ return nil
+}
+
+func (w *Windows) Check() error {
+ mx, err := w.collect()
+ if err != nil {
+ w.Error(err)
+ return err
+ }
+ if len(mx) == 0 {
+ return errors.New("no metrics collected")
+ }
+ return nil
+}
+
+func (w *Windows) Charts() *module.Charts {
+ return w.charts
+}
+
+func (w *Windows) Collect() map[string]int64 {
+ ms, err := w.collect()
+ if err != nil {
+ w.Error(err)
+ }
+
+ if len(ms) == 0 {
+ return nil
+ }
+ return ms
+}
+
+func (w *Windows) Cleanup() {
+ if w.prom != nil && w.prom.HTTPClient() != nil {
+ w.prom.HTTPClient().CloseIdleConnections()
+ }
+}