summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/dnsdist/init.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/dnsdist/init.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/dnsdist/init.go b/src/go/collectors/go.d.plugin/modules/dnsdist/init.go
new file mode 100644
index 000000000..d88310883
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/dnsdist/init.go
@@ -0,0 +1,31 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package dnsdist
+
+import (
+ "errors"
+ "net/http"
+
+ "github.com/netdata/netdata/go/go.d.plugin/agent/module"
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
+)
+
+func (d *DNSdist) validateConfig() error {
+ if d.URL == "" {
+ return errors.New("URL not set")
+ }
+
+ if _, err := web.NewHTTPRequest(d.Request); err != nil {
+ return err
+ }
+
+ return nil
+}
+
+func (d *DNSdist) initHTTPClient() (*http.Client, error) {
+ return web.NewHTTPClient(d.Client)
+}
+
+func (d *DNSdist) initCharts() (*module.Charts, error) {
+ return charts.Copy(), nil
+}