forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drop_fields.go
63 lines (51 loc) · 1.28 KB
/
drop_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
package actions
import (
"fmt"
"strings"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/processors"
)
type dropFields struct {
Fields []string
}
func init() {
processors.RegisterPlugin("drop_fields",
configChecked(newDropFields,
requireFields("fields"),
allowedFields("fields", "when")))
}
func newDropFields(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 drop_fields configuration: %s", err)
}
/* remove read only fields */
for _, readOnly := range processors.MandatoryExportedFields {
for i, field := range config.Fields {
if readOnly == field {
config.Fields = append(config.Fields[:i], config.Fields[i+1:]...)
}
}
}
f := dropFields{Fields: config.Fields}
return f, nil
}
func (f dropFields) Run(event common.MapStr) (common.MapStr, error) {
var errors []string
for _, field := range f.Fields {
err := event.Delete(field)
if err != nil {
errors = append(errors, err.Error())
}
}
if len(errors) > 0 {
return event, fmt.Errorf(strings.Join(errors, ", "))
}
return event, nil
}
func (f dropFields) String() string {
return "drop_fields=" + strings.Join(f.Fields, ", ")
}