package fshttp import ( "github.com/elastic/beats/libbeat/beat" "github.com/elastic/beats/libbeat/common" "github.com/elastic/beats/libbeat/outputs" ) func init() { outputs.RegisterType("http", newHTTPOutput) } func newHTTPOutput(_ outputs.IndexManager, _ beat.Info, stats outputs.Observer, cfg *common.Config) (outputs.Group, error) { clients := []outputs.NetworkClient{} return outputs.Success(batchSize, retryLimit, clients...) }