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

package windows

import (
	"errors"

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

func (w *Windows) validateConfig() error {
	if w.URL == "" {
		return errors.New("'url' is not set")
	}
	return nil
}

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