代码拉取完成,页面将自动刷新
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)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。