summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/coredns/init.go
blob: 1e3a7be5cd2b7199bc621716b2dad0beecbbf382 (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
// SPDX-License-Identifier: GPL-3.0-or-later

package coredns

import (
	"errors"

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

func (cd *CoreDNS) validateConfig() error {
	if cd.URL == "" {
		return errors.New("url not set")
	}
	return nil
}

func (cd *CoreDNS) initPerServerMatcher() (matcher.Matcher, error) {
	if cd.PerServerStats.Empty() {
		return nil, nil
	}
	return cd.PerServerStats.Parse()
}

func (cd *CoreDNS) initPerZoneMatcher() (matcher.Matcher, error) {
	if cd.PerZoneStats.Empty() {
		return nil, nil
	}
	return cd.PerZoneStats.Parse()
}

func (cd *CoreDNS) initPrometheusClient() (prometheus.Prometheus, error) {
	client, err := web.NewHTTPClient(cd.Client)
	if err != nil {
		return nil, err
	}
	return prometheus.New(client, cd.Request), nil
}