1 Star 0 Fork 0

zhangjungang / beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
include_fields.go 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
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, ", ")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v5.6.10

搜索帮助

344bd9b3 5694891 D2dac590 5694891