1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
plugin.go 690 Bytes
一键复制 编辑 原始数据 按行查看 历史
package outputs
import (
"errors"
"fmt"
p "github.com/elastic/beats/libbeat/plugin"
)
type outputPlugin struct {
name string
builder OutputBuilder
}
var pluginKey = "libbeat.output"
func Plugin(name string, l OutputBuilder) map[string][]interface{} {
return p.MakePlugin(pluginKey, outputPlugin{name, l})
}
func init() {
p.MustRegisterLoader(pluginKey, func(ifc interface{}) error {
b, ok := ifc.(outputPlugin)
if !ok {
return errors.New("plugin does not match output plugin type")
}
name := b.name
if outputsPlugins[name] != nil {
return fmt.Errorf("output type %v already registered", name)
}
RegisterOutputPlugin(name, b.builder)
return nil
})
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v5.6.12

搜索帮助