-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathoutput_reg.go
88 lines (76 loc) · 2.61 KB
/
output_reg.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// 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 outputs
import (
"fmt"
"github.com/elastic/beats/v7/libbeat/beat"
"github.com/elastic/beats/v7/libbeat/common"
)
var outputReg = map[string]Factory{}
// Factory is used by output plugins to build an output instance
type Factory func(
im IndexManager,
beat beat.Info,
stats Observer,
cfg *common.Config) (Group, error)
// IndexManager provides additional index related services to the outputs.
type IndexManager interface {
// BuildSelector can be used by an output to create an IndexSelector based on
// the outputs configuration.
// The defaultIndex is interpreted as format string and used as default fallback
// if no index is configured or all indices are guarded using conditionals.
BuildSelector(cfg *common.Config) (IndexSelector, error)
}
// IndexSelector is used to find the index name an event shall be indexed to.
type IndexSelector interface {
Select(event *beat.Event) (string, 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(
im IndexManager,
info beat.Info,
stats Observer,
name string,
config *common.Config,
) (Group, error) {
factory := FindFactory(name)
if factory == nil {
return Group{}, fmt.Errorf("output type %v undefined", name)
}
if stats == nil {
stats = NewNilObserver()
}
return factory(im, info, stats, config)
}