aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/admin/vespa-wrapper/logfmt/options.go
blob: 1fe6768a152fc1e3b9d8be8114aebd90ce4f2968 (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// vespa logfmt command
// Author: arnej

package logfmt

import (
	"fmt"
	"os"
)

// options designed for compatibility with perl version of vespa-logfmt

type Options struct {
	ShowFields        flagValueForShow
	ShowLevels        flagValueForLevel
	OnlyHostname      string
	OnlyPid           string
	OnlyService       string
	OnlyInternal      bool
	FollowTail        bool
	DequoteNewlines   bool
	TruncateService   bool
	TruncateComponent bool
	ComponentFilter   regexFlag
	MessageFilter     regexFlag
	Format            OutputFormat
}

func NewOptions() (ret Options) {
	ret.ShowLevels.levels = defaultLevelFlags()
	ret.ShowFields.shown = defaultShowFlags()
	return
}

func (o *Options) showField(field string) bool {
	return o.ShowFields.shown[field]
}

func (o *Options) showLevel(level string) bool {
	rv, ok := o.ShowLevels.levels[level]
	if !ok {
		o.ShowLevels.levels[level] = true
		fmt.Fprintf(os.Stderr, "Warnings: unknown level '%s' in input\n", level)
		return true
	}
	return rv
}