summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/envoy/init.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/envoy/init.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/envoy/init.go b/src/go/collectors/go.d.plugin/modules/envoy/init.go
new file mode 100644
index 000000000..0ce89c8bc
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/envoy/init.go
@@ -0,0 +1,26 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package envoy
+
+import (
+ "errors"
+
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
+)
+
+func (e *Envoy) validateConfig() error {
+ if e.URL == "" {
+ return errors.New("url not set")
+ }
+ return nil
+}
+
+func (e *Envoy) initPrometheusClient() (prometheus.Prometheus, error) {
+ httpClient, err := web.NewHTTPClient(e.Client)
+ if err != nil {
+ return nil, err
+ }
+
+ return prometheus.New(httpClient, e.Request), nil
+}