-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor filebeat connector (#12997)
The filebeat channel package wraps the publisher pipeline, providing support for preparing custom user settings. The drawback is, that inputs can not configure custom fields, processors, and ACK handlers. The later is required for implementing end-to-end ACK. This refactoring modifies the channel.Factory and channel.Connector types, such that input authors are able to make use of all the capabilities of the publisher pipeline. Inputs are free to configure the PublishMode. If not set, then filebeat defaults to guaranteed sends. The channel.Outleter should become more similar to beat.Client in the future, and will be eventually removed. A side effect of moving closer to beat.Client is the removal of the filebeat/util package. The complex shutdown handling in filebeat still prevents us from removing channel.Outlet. The complex shutdown handling is still required for handling the interactions between the logs input and the registrar on shutdown.
- Loading branch information
Steffen Siering
authored
Jul 26, 2019
1 parent
d5b8171
commit c8128cb
Showing
26 changed files
with
326 additions
and
386 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
// Licensed to Elasticsearch B.V. under one or more contributor | ||
// license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright | ||
// ownership. Elasticsearch B.V. licenses this file to you under | ||
// the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
package channel | ||
|
||
import ( | ||
"github.com/elastic/beats/libbeat/beat" | ||
"github.com/elastic/beats/libbeat/common" | ||
"github.com/elastic/beats/libbeat/processors" | ||
) | ||
|
||
// ConnectorFunc is an adapter for using ordinary functions as Connector. | ||
type ConnectorFunc func(*common.Config, beat.ClientConfig) (Outleter, error) | ||
|
||
type pipelineConnector struct { | ||
parent *OutletFactory | ||
pipeline beat.Pipeline | ||
} | ||
|
||
// Connect passes the cfg and the zero value of beat.ClientConfig to the underlying function. | ||
func (fn ConnectorFunc) Connect(cfg *common.Config) (Outleter, error) { | ||
return fn(cfg, beat.ClientConfig{}) | ||
} | ||
|
||
// ConnectWith passes the configuration and the pipeline connection setting to the underlying function. | ||
func (fn ConnectorFunc) ConnectWith(cfg *common.Config, clientCfg beat.ClientConfig) (Outleter, error) { | ||
return fn(cfg, clientCfg) | ||
} | ||
|
||
func (c *pipelineConnector) Connect(cfg *common.Config) (Outleter, error) { | ||
return c.ConnectWith(cfg, beat.ClientConfig{}) | ||
} | ||
|
||
func (c *pipelineConnector) ConnectWith(cfg *common.Config, clientCfg beat.ClientConfig) (Outleter, error) { | ||
config := inputOutletConfig{} | ||
if err := cfg.Unpack(&config); err != nil { | ||
return nil, err | ||
} | ||
|
||
var err error | ||
var userProcessors beat.ProcessorList | ||
|
||
userProcessors, err = processors.New(config.Processors) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if lst := clientCfg.Processing.Processor; lst != nil { | ||
if len(userProcessors.All()) == 0 { | ||
userProcessors = lst | ||
} else if orig := lst.All(); len(orig) > 0 { | ||
newLst := processors.NewList(nil) | ||
newLst.List = append(newLst.List, lst, userProcessors) | ||
userProcessors = newLst | ||
} | ||
} | ||
|
||
setOptional := func(to common.MapStr, key string, value string) { | ||
if value != "" { | ||
to.Put(key, value) | ||
} | ||
} | ||
|
||
meta := clientCfg.Processing.Meta.Clone() | ||
fields := clientCfg.Processing.Fields.Clone() | ||
|
||
serviceType := config.ServiceType | ||
if serviceType == "" { | ||
serviceType = config.Module | ||
} | ||
|
||
setOptional(meta, "pipeline", config.Pipeline) | ||
setOptional(fields, "fileset.name", config.Fileset) | ||
setOptional(fields, "service.type", serviceType) | ||
setOptional(fields, "input.type", config.Type) | ||
if config.Module != "" { | ||
event := common.MapStr{"module": config.Module} | ||
if config.Fileset != "" { | ||
event["dataset"] = config.Module + "." + config.Fileset | ||
} | ||
fields["event"] = event | ||
} | ||
|
||
mode := clientCfg.PublishMode | ||
if mode == beat.DefaultGuarantees { | ||
mode = beat.GuaranteedSend | ||
} | ||
|
||
// connect with updated configuration | ||
clientCfg.PublishMode = mode | ||
clientCfg.Processing.EventMetadata = config.EventMetadata | ||
clientCfg.Processing.Meta = meta | ||
clientCfg.Processing.Fields = fields | ||
clientCfg.Processing.Processor = userProcessors | ||
client, err := c.pipeline.ConnectWith(clientCfg) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
outlet := newOutlet(client, c.parent.wgEvents) | ||
if c.parent.done != nil { | ||
return CloseOnSignal(outlet, c.parent.done), nil | ||
} | ||
return outlet, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.