summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/filecheck/init.go
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 11:19:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:53:24 +0000
commitb5f8ee61a7f7e9bd291dd26b0585d03eb686c941 (patch)
treed4d31289c39fc00da064a825df13a0b98ce95b10 /src/go/collectors/go.d.plugin/modules/filecheck/init.go
parentAdding upstream version 1.44.3. (diff)
downloadnetdata-upstream.tar.xz
netdata-upstream.zip
Adding upstream version 1.46.3.upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/filecheck/init.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/filecheck/init.go b/src/go/collectors/go.d.plugin/modules/filecheck/init.go
new file mode 100644
index 000000000..464f81735
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/filecheck/init.go
@@ -0,0 +1,38 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package filecheck
+
+import (
+ "errors"
+
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/matcher"
+)
+
+func (f *Filecheck) validateConfig() error {
+ if len(f.Files.Include) == 0 && len(f.Dirs.Include) == 0 {
+ return errors.New("both 'files->include' and 'dirs->include' are empty")
+ }
+ return nil
+}
+
+func (f *Filecheck) initFilesFilter() (matcher.Matcher, error) {
+ return newFilter(f.Files.Exclude)
+}
+
+func (f *Filecheck) initDirsFilter() (matcher.Matcher, error) {
+ return newFilter(f.Dirs.Exclude)
+}
+
+func newFilter(patterns []string) (matcher.Matcher, error) {
+ filter := matcher.FALSE()
+
+ for _, s := range patterns {
+ m, err := matcher.NewGlobMatcher(s)
+ if err != nil {
+ return nil, err
+ }
+ filter = matcher.Or(filter, m)
+ }
+
+ return filter, nil
+}