forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 9
/
include_fields.go
69 lines (58 loc) · 1.53 KB
/
include_fields.go
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package actions
import (
"fmt"
"strings"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/processors"
"github.com/pkg/errors"
)
type includeFields struct {
Fields []string
}
func init() {
processors.RegisterPlugin("include_fields",
configChecked(newIncludeFields,
requireFields("fields"),
allowedFields("fields", "when")))
}
func newIncludeFields(c common.Config) (processors.Processor, error) {
config := struct {
Fields []string `config:"fields"`
}{}
err := c.Unpack(&config)
if err != nil {
return nil, fmt.Errorf("fail to unpack the include_fields configuration: %s", err)
}
/* add read only fields if they are not yet */
for _, readOnly := range processors.MandatoryExportedFields {
found := false
for _, field := range config.Fields {
if readOnly == field {
found = true
}
}
if !found {
config.Fields = append(config.Fields, readOnly)
}
}
f := includeFields{Fields: config.Fields}
return &f, nil
}
func (f includeFields) Run(event common.MapStr) (common.MapStr, error) {
filtered := common.MapStr{}
var errs []string
for _, field := range f.Fields {
err := event.CopyFieldsTo(filtered, field)
// Ignore errors caused by a field not existing in the event.
if err != nil && errors.Cause(err) != common.ErrKeyNotFound {
errs = append(errs, err.Error())
}
}
if len(errs) > 0 {
return filtered, fmt.Errorf(strings.Join(errs, ", "))
}
return filtered, nil
}
func (f includeFields) String() string {
return "include_fields=" + strings.Join(f.Fields, ", ")
}