1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
multiline_config.go 573 Bytes
一键复制 编辑 原始数据 按行查看 历史
package reader
import (
"fmt"
"time"
"github.com/elastic/beats/libbeat/common/match"
)
type MultilineConfig struct {
Negate bool `config:"negate"`
Match string `config:"match" validate:"required"`
MaxLines *int `config:"max_lines"`
Pattern *match.Matcher `config:"pattern" validate:"required"`
Timeout *time.Duration `config:"timeout" validate:"positive"`
}
func (c *MultilineConfig) Validate() error {
if c.Match != "after" && c.Match != "before" {
return fmt.Errorf("unknown matcher type: %s", c.Match)
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v5.6.16

搜索帮助