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

package fluentd

import (
	"errors"

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

func (f *Fluentd) validateConfig() error {
	if f.URL == "" {
		return errors.New("url not set")
	}

	return nil
}

func (f *Fluentd) initPermitPluginMatcher() (matcher.Matcher, error) {
	if f.PermitPlugin == "" {
		return matcher.TRUE(), nil
	}

	return matcher.NewSimplePatternsMatcher(f.PermitPlugin)
}

func (f *Fluentd) initApiClient() (*apiClient, error) {
	client, err := web.NewHTTPClient(f.Client)
	if err != nil {
		return nil, err
	}

	return newAPIClient(client, f.Request), nil
}