summaryrefslogtreecommitdiffstats
path: root/src/go/plugin/go.d/modules/cassandra/init.go
blob: 1a74fdf9b1fa86ab4aa8c4ab33b70637993a588f (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 cassandra

import (
	"errors"

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

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

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