From 87d772a7d708fec12f48cd8adc0dedff6e1025da Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 26 Aug 2024 10:15:20 +0200 Subject: Adding upstream version 1.47.0. Signed-off-by: Daniel Baumann --- .../go.d.plugin/modules/windows/windows.go | 171 --------------------- 1 file changed, 171 deletions(-) delete mode 100644 src/go/collectors/go.d.plugin/modules/windows/windows.go (limited to 'src/go/collectors/go.d.plugin/modules/windows/windows.go') diff --git a/src/go/collectors/go.d.plugin/modules/windows/windows.go b/src/go/collectors/go.d.plugin/modules/windows/windows.go deleted file mode 100644 index 99bfecf1d..000000000 --- a/src/go/collectors/go.d.plugin/modules/windows/windows.go +++ /dev/null @@ -1,171 +0,0 @@ -// 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() }, - Config: func() any { return &Config{} }, - }) -} - -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 { - UpdateEvery int `yaml:"update_every,omitempty" json:"update_every"` - web.HTTP `yaml:",inline" json:""` - Vnode string `yaml:"vnode,omitempty" json:"vnode"` -} - -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() - } -} -- cgit v1.2.3