blob: c98c3c1dfb1f99c3d9c61ee30a4920e05e652e8f (
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
|
// SPDX-License-Identifier: GPL-3.0-or-later
package pulsar
import (
"errors"
"github.com/netdata/netdata/go/plugins/pkg/matcher"
"github.com/netdata/netdata/go/plugins/plugin/go.d/pkg/prometheus"
"github.com/netdata/netdata/go/plugins/plugin/go.d/pkg/web"
)
func (p *Pulsar) validateConfig() error {
if p.URL == "" {
return errors.New("url not set")
}
return nil
}
func (p *Pulsar) initPrometheusClient() (prometheus.Prometheus, error) {
client, err := web.NewHTTPClient(p.ClientConfig)
if err != nil {
return nil, err
}
return prometheus.New(client, p.RequestConfig), nil
}
func (p *Pulsar) initTopicFilerMatcher() (matcher.Matcher, error) {
if p.TopicFilter.Empty() {
return matcher.FALSE(), nil
}
return p.TopicFilter.Parse()
}
|