summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/consul/init.go
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 11:19:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:53:24 +0000
commitb5f8ee61a7f7e9bd291dd26b0585d03eb686c941 (patch)
treed4d31289c39fc00da064a825df13a0b98ce95b10 /src/go/collectors/go.d.plugin/modules/consul/init.go
parentAdding upstream version 1.44.3. (diff)
downloadnetdata-upstream.tar.xz
netdata-upstream.zip
Adding upstream version 1.46.3.upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/consul/init.go48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/consul/init.go b/src/go/collectors/go.d.plugin/modules/consul/init.go
new file mode 100644
index 000000000..944609a16
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/consul/init.go
@@ -0,0 +1,48 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package consul
+
+import (
+ "errors"
+ "net/http"
+ "net/url"
+
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/web"
+)
+
+func (c *Consul) validateConfig() error {
+ if c.URL == "" {
+ return errors.New("'url' not set")
+ }
+ return nil
+}
+
+func (c *Consul) initHTTPClient() (*http.Client, error) {
+ return web.NewHTTPClient(c.Client)
+}
+
+const urlPathAgentMetrics = "/v1/agent/metrics"
+
+func (c *Consul) initPrometheusClient(httpClient *http.Client) (prometheus.Prometheus, error) {
+ r, err := web.NewHTTPRequest(c.Request.Copy())
+ if err != nil {
+ return nil, err
+ }
+ r.URL.Path = urlPathAgentMetrics
+ r.URL.RawQuery = url.Values{
+ "format": []string{"prometheus"},
+ }.Encode()
+
+ req := c.Request.Copy()
+ req.URL = r.URL.String()
+
+ if c.ACLToken != "" {
+ if req.Headers == nil {
+ req.Headers = make(map[string]string)
+ }
+ req.Headers["X-Consul-Token"] = c.ACLToken
+ }
+
+ return prometheus.New(httpClient, req), nil
+}