summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/cockroachdb/init.go
blob: fbe635a83b01322b048ba3ea307d426592bce400 (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 cockroachdb

import (
	"errors"
	"github.com/netdata/netdata/go/go.d.plugin/pkg/web"

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

func (c *CockroachDB) validateConfig() error {
	if c.URL == "" {
		return errors.New("URL is not set")
	}
	return nil
}

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