-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathmodule.go
199 lines (167 loc) · 5.21 KB
/
module.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
// 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 pipeline
import (
"flag"
"fmt"
"go.elastic.co/apm"
"github.com/elastic/beats/v7/libbeat/beat"
"github.com/elastic/beats/v7/libbeat/common"
"github.com/elastic/beats/v7/libbeat/logp"
"github.com/elastic/beats/v7/libbeat/monitoring"
"github.com/elastic/beats/v7/libbeat/outputs"
"github.com/elastic/beats/v7/libbeat/publisher/processing"
"github.com/elastic/beats/v7/libbeat/publisher/queue"
)
// Global pipeline module for loading the main pipeline from a configuration object
// command line flags
var publishDisabled = false
const defaultQueueType = "mem"
// Monitors configures visibility for observing state and progress of the
// pipeline.
type Monitors struct {
Metrics *monitoring.Registry
Telemetry *monitoring.Registry
Logger *logp.Logger
Tracer *apm.Tracer
}
// OutputFactory is used by the publisher pipeline to create an output instance.
// If the group returned can be empty. The pipeline will accept events, but
// eventually block.
type OutputFactory func(outputs.Observer) (string, outputs.Group, error)
func init() {
flag.BoolVar(&publishDisabled, "N", false, "Disable actual publishing for testing")
}
// Load uses a Config object to create a new complete Pipeline instance with
// configured queue and outputs. This is a non-blocking operation, and outputs should connect lazily.
func Load(
beatInfo beat.Info,
monitors Monitors,
config Config,
processors processing.Supporter,
makeOutput func(outputs.Observer) (string, outputs.Group, error),
) (*Pipeline, error) {
settings := Settings{
WaitClose: 0,
WaitCloseMode: NoWaitOnClose,
Processors: processors,
}
return LoadWithSettings(beatInfo, monitors, config, makeOutput, settings)
}
// LoadWithSettings is the same as Load, but it exposes a Settings object that includes processors and WaitClose behavior
func LoadWithSettings(
beatInfo beat.Info,
monitors Monitors,
config Config,
makeOutput func(outputs.Observer) (string, outputs.Group, error),
settings Settings,
) (*Pipeline, error) {
log := monitors.Logger
if log == nil {
log = logp.L()
}
if publishDisabled {
log.Info("Dry run mode. All output types except the file based one are disabled.")
}
name := beatInfo.Name
queueBuilder, err := createQueueBuilder(config.Queue, monitors, settings.InputQueueSize)
if err != nil {
return nil, err
}
out, err := loadOutput(monitors, makeOutput)
if err != nil {
return nil, err
}
p, err := New(beatInfo, monitors, queueBuilder, out, settings)
if err != nil {
return nil, err
}
log.Infof("Beat name: %s", name)
return p, err
}
func loadOutput(
monitors Monitors,
makeOutput OutputFactory,
) (outputs.Group, error) {
log := monitors.Logger
if log == nil {
log = logp.L()
}
if publishDisabled {
return outputs.Group{}, nil
}
if makeOutput == nil {
return outputs.Group{}, nil
}
var (
metrics *monitoring.Registry
outStats outputs.Observer
)
if monitors.Metrics != nil {
metrics = monitors.Metrics.GetRegistry("output")
if metrics != nil {
metrics.Clear()
} else {
metrics = monitors.Metrics.NewRegistry("output")
}
outStats = outputs.NewStats(metrics)
}
outName, out, err := makeOutput(outStats)
if err != nil {
return outputs.Fail(err)
}
if metrics != nil {
monitoring.NewString(metrics, "type").Set(outName)
}
if monitors.Telemetry != nil {
telemetry := monitors.Telemetry.GetRegistry("output")
if telemetry != nil {
telemetry.Clear()
} else {
telemetry = monitors.Telemetry.NewRegistry("output")
}
monitoring.NewString(telemetry, "name").Set(outName)
monitoring.NewInt(telemetry, "batch_size").Set(int64(out.BatchSize))
monitoring.NewInt(telemetry, "clients").Set(int64(len(out.Clients)))
}
return out, nil
}
func createQueueBuilder(
config common.ConfigNamespace,
monitors Monitors,
inQueueSize int,
) (func(queue.ACKListener) (queue.Queue, error), error) {
queueType := defaultQueueType
if b := config.Name(); b != "" {
queueType = b
}
queueFactory := queue.FindFactory(queueType)
if queueFactory == nil {
return nil, fmt.Errorf("'%v' is no valid queue type", queueType)
}
queueConfig := config.Config()
if queueConfig == nil {
queueConfig = common.NewConfig()
}
if monitors.Telemetry != nil {
queueReg := monitors.Telemetry.NewRegistry("queue")
monitoring.NewString(queueReg, "name").Set(queueType)
}
return func(ackListener queue.ACKListener) (queue.Queue, error) {
return queueFactory(ackListener, monitors.Logger, queueConfig, inQueueSize)
}, nil
}