summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/haproxy/init.go
blob: 2163b9624d69e030f71a2036091f3a60bc122c0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// SPDX-License-Identifier: GPL-3.0-or-later

package haproxy

import (
	"errors"

	"github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
	"github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus/selector"
	"github.com/netdata/netdata/go/go.d.plugin/pkg/web"
)

func (h Haproxy) validateConfig() error {
	if h.URL == "" {
		return errors.New("'url' is not set")
	}
	if _, err := web.NewHTTPRequest(h.Request); err != nil {
		return err
	}
	return nil
}

func (h Haproxy) initPrometheusClient() (prometheus.Prometheus, error) {
	httpClient, err := web.NewHTTPClient(h.Client)
	if err != nil {
		return nil, err
	}

	prom := prometheus.NewWithSelector(httpClient, h.Request, sr)
	return prom, nil
}

var sr, _ = selector.Expr{
	Allow: []string{
		metricBackendHTTPResponsesTotal,
		metricBackendCurrentQueue,
		metricBackendQueueTimeAverageSeconds,
		metricBackendBytesInTotal,
		metricBackendResponseTimeAverageSeconds,
		metricBackendSessionsTotal,
		metricBackendCurrentSessions,
		metricBackendBytesOutTotal,
	},
}.Parse()