forked from SumoLogic/sumologic-otel-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
factory.go
207 lines (177 loc) · 6 KB
/
factory.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
200
201
202
203
204
205
206
207
// Copyright 2020 OpenTelemetry Authors
//
// Licensed 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 k8sprocessor
import (
"context"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/config"
"go.opentelemetry.io/collector/consumer"
"go.opentelemetry.io/collector/processor/processorhelper"
"github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig"
"github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sprocessor/kube"
)
const (
// The value of "type" key in configuration.
typeStr = "k8s_tagger"
stabilityLevel = component.StabilityLevelBeta
)
var kubeClientProvider = kube.ClientProvider(nil)
var processorCapabilities = consumer.Capabilities{MutatesData: true}
// NewFactory returns a new factory for the k8s processor.
func NewFactory() component.ProcessorFactory {
return component.NewProcessorFactory(
typeStr,
createDefaultConfig,
component.WithTracesProcessorAndStabilityLevel(createTracesProcessor, stabilityLevel),
component.WithMetricsProcessorAndStabilityLevel(createMetricsProcessor, stabilityLevel),
component.WithLogsProcessorAndStabilityLevel(createLogsProcessor, stabilityLevel),
)
}
func createDefaultConfig() config.Processor {
return &Config{
ProcessorSettings: config.NewProcessorSettings(config.NewComponentID(typeStr)),
APIConfig: k8sconfig.APIConfig{AuthType: k8sconfig.AuthTypeServiceAccount},
Extract: ExtractConfig{
Delimiter: DefaultDelimiter,
},
}
}
func createTracesProcessor(
ctx context.Context,
params component.ProcessorCreateSettings,
cfg config.Processor,
next consumer.Traces,
) (component.TracesProcessor, error) {
return createTracesProcessorWithOptions(ctx, params, cfg, next)
}
func createLogsProcessor(
ctx context.Context,
params component.ProcessorCreateSettings,
cfg config.Processor,
nextLogsConsumer consumer.Logs,
) (component.LogsProcessor, error) {
return createLogsProcessorWithOptions(ctx, params, cfg, nextLogsConsumer)
}
func createMetricsProcessor(
ctx context.Context,
params component.ProcessorCreateSettings,
cfg config.Processor,
nextMetricsConsumer consumer.Metrics,
) (component.MetricsProcessor, error) {
return createMetricsProcessorWithOptions(ctx, params, cfg, nextMetricsConsumer)
}
func createTracesProcessorWithOptions(
_ context.Context,
params component.ProcessorCreateSettings,
cfg config.Processor,
next consumer.Traces,
options ...Option,
) (component.TracesProcessor, error) {
kp, err := createKubernetesProcessor(params, cfg, options...)
if err != nil {
return nil, err
}
return processorhelper.NewTracesProcessor(
cfg,
next,
kp.ProcessTraces,
processorhelper.WithCapabilities(processorCapabilities),
processorhelper.WithStart(kp.Start),
processorhelper.WithShutdown(kp.Shutdown))
}
func createMetricsProcessorWithOptions(
_ context.Context,
params component.ProcessorCreateSettings,
cfg config.Processor,
nextMetricsConsumer consumer.Metrics,
options ...Option,
) (component.MetricsProcessor, error) {
kp, err := createKubernetesProcessor(params, cfg, options...)
if err != nil {
return nil, err
}
return processorhelper.NewMetricsProcessor(
cfg,
nextMetricsConsumer,
kp.ProcessMetrics,
processorhelper.WithCapabilities(processorCapabilities),
processorhelper.WithStart(kp.Start),
processorhelper.WithShutdown(kp.Shutdown))
}
func createLogsProcessorWithOptions(
_ context.Context,
params component.ProcessorCreateSettings,
cfg config.Processor,
nextLogsConsumer consumer.Logs,
options ...Option,
) (component.LogsProcessor, error) {
kp, err := createKubernetesProcessor(params, cfg, options...)
if err != nil {
return nil, err
}
return processorhelper.NewLogsProcessor(
cfg,
nextLogsConsumer,
kp.ProcessLogs,
processorhelper.WithCapabilities(processorCapabilities),
processorhelper.WithStart(kp.Start),
processorhelper.WithShutdown(kp.Shutdown))
}
func createKubernetesProcessor(
params component.ProcessorCreateSettings,
cfg config.Processor,
options ...Option,
) (*kubernetesprocessor, error) {
kp := &kubernetesprocessor{logger: params.Logger}
allOptions := append(createProcessorOpts(cfg), options...)
for _, opt := range allOptions {
if err := opt(kp); err != nil {
return nil, err
}
}
// This might have been set by an option already
if kp.kc == nil {
err := kp.initKubeClient(kp.logger, kubeClientProvider)
if err != nil {
return nil, err
}
}
return kp, nil
}
func createProcessorOpts(cfg config.Processor) []Option {
oCfg := cfg.(*Config)
opts := []Option{}
if oCfg.Passthrough {
opts = append(opts, WithPassthrough())
}
// extraction rules
opts = append(opts, WithExtractMetadata(oCfg.Extract.Metadata...))
opts = append(opts, WithExtractLabels(oCfg.Extract.Labels...))
opts = append(opts, WithExtractNamespaceLabels(oCfg.Extract.NamespaceLabels...))
opts = append(opts, WithExtractAnnotations(oCfg.Extract.Annotations...))
opts = append(opts, WithExtractTags(oCfg.Extract.Tags))
if oCfg.OwnerLookupEnabled {
opts = append(opts, WithOwnerLookupEnabled())
}
// filters
opts = append(opts, WithFilterNode(oCfg.Filter.Node, oCfg.Filter.NodeFromEnvVar))
opts = append(opts, WithFilterNamespace(oCfg.Filter.Namespace))
opts = append(opts, WithFilterLabels(oCfg.Filter.Labels...))
opts = append(opts, WithFilterFields(oCfg.Filter.Fields...))
opts = append(opts, WithAPIConfig(oCfg.APIConfig))
opts = append(opts, WithExtractPodAssociations(oCfg.Association...))
opts = append(opts, WithDelimiter(oCfg.Extract.Delimiter))
opts = append(opts, WithExcludes(oCfg.Exclude))
return opts
}