1 Star 0 Fork 0

sqos/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
output_reg.go 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
package outputs
import (
"fmt"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/cfgwarn"
)
var outputReg = map[string]Factory{}
// Factory is used by output plugins to build an output instance
type Factory func(
beat beat.Info,
stats *Stats,
cfg *common.Config) (Group, error)
// Group configures and combines multiple clients into load-balanced group of clients
// being managed by the publisher pipeline.
type Group struct {
Clients []Client
BatchSize int
Retry int
}
// RegisterType registers a new output type.
func RegisterType(name string, f Factory) {
if outputReg[name] != nil {
panic(fmt.Errorf("output type '%v' exists already", name))
}
outputReg[name] = f
}
// FindFactory finds an output type its factory if available.
func FindFactory(name string) Factory {
return outputReg[name]
}
// Load creates and configures a output Group using a configuration object..
func Load(info beat.Info, stats *Stats, name string, config *common.Config) (Group, error) {
factory := FindFactory(name)
if factory == nil {
return Group{}, fmt.Errorf("output type %v undefined", name)
}
if err := cfgwarn.CheckRemoved5xSetting(config, "flush_interval"); err != nil {
return Fail(err)
}
return factory(info, stats, config)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sqos/beats.git
git@gitee.com:sqos/beats.git
sqos
beats
beats
v6.0.0

搜索帮助