forked from SumoLogic/sumologic-otel-collector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
processor.go
152 lines (133 loc) · 4.19 KB
/
processor.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
// 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"
"time"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/pdata/pcommon"
"go.opentelemetry.io/collector/pdata/plog"
"go.opentelemetry.io/collector/pdata/pmetric"
"go.opentelemetry.io/collector/pdata/ptrace"
"go.uber.org/zap"
"github.com/open-telemetry/opentelemetry-collector-contrib/internal/k8sconfig"
"github.com/open-telemetry/opentelemetry-collector-contrib/processor/k8sprocessor/kube"
)
const (
k8sIPLabelName string = "k8s.pod.ip"
clientIPLabelName string = "ip"
)
type kubernetesprocessor struct {
logger *zap.Logger
apiConfig k8sconfig.APIConfig
kc kube.Client
passthroughMode bool
rules kube.ExtractionRules
filters kube.Filters
podAssociations []kube.Association
podIgnore kube.Excludes
delimiter string
}
func (kp *kubernetesprocessor) initKubeClient(logger *zap.Logger, kubeClient kube.ClientProvider) error {
if kubeClient == nil {
kubeClient = kube.New
}
if !kp.passthroughMode {
kc, err := kubeClient(
logger,
kp.apiConfig,
kp.rules,
kp.filters,
kp.podAssociations,
kp.podIgnore,
nil,
nil,
nil,
kp.delimiter,
30*time.Second,
kube.DefaultPodDeleteGracePeriod,
)
if err != nil {
return err
}
kp.kc = kc
}
return nil
}
func (kp *kubernetesprocessor) Start(_ context.Context, _ component.Host) error {
if !kp.passthroughMode {
go kp.kc.Start()
}
return nil
}
func (kp *kubernetesprocessor) Shutdown(context.Context) error {
if !kp.passthroughMode {
kp.kc.Stop()
}
return nil
}
// ProcessTraces process traces and add k8s metadata using resource IP or incoming IP as pod origin.
func (kp *kubernetesprocessor) ProcessTraces(ctx context.Context, td ptrace.Traces) (ptrace.Traces, error) {
rss := td.ResourceSpans()
for i := 0; i < rss.Len(); i++ {
kp.processResource(ctx, rss.At(i).Resource())
}
return td, nil
}
// ProcessMetrics process metrics and add k8s metadata using resource IP, hostname or incoming IP as pod origin.
func (kp *kubernetesprocessor) ProcessMetrics(ctx context.Context, md pmetric.Metrics) (pmetric.Metrics, error) {
rm := md.ResourceMetrics()
for i := 0; i < rm.Len(); i++ {
kp.processResource(ctx, rm.At(i).Resource())
}
return md, nil
}
// ProcessLogs process logs and add k8s metadata using resource IP, hostname or incoming IP as pod origin.
func (kp *kubernetesprocessor) ProcessLogs(ctx context.Context, ld plog.Logs) (plog.Logs, error) {
rl := ld.ResourceLogs()
for i := 0; i < rl.Len(); i++ {
kp.processResource(ctx, rl.At(i).Resource())
}
return ld, nil
}
// processResource adds Pod metadata tags to resource based on pod association configuration
func (kp *kubernetesprocessor) processResource(ctx context.Context, resource pcommon.Resource) {
podIdentifierKey, podIdentifierValue, err := extractPodID(ctx, resource.Attributes(), kp.podAssociations)
if err != nil {
kp.logger.Debug(
"Could not identify pod for given resource",
zap.Error(err),
zap.Any("resource_attributes", resource.Attributes()),
)
return
}
if podIdentifierKey != "" {
resource.Attributes().PutStr(podIdentifierKey, string(podIdentifierValue))
}
if kp.passthroughMode {
return
}
attrsToAdd := kp.getAttributesForPod(podIdentifierValue)
for key, val := range attrsToAdd {
resource.Attributes().PutStr(key, val)
}
}
func (kp *kubernetesprocessor) getAttributesForPod(identifier kube.PodIdentifier) map[string]string {
attributes, ok := kp.kc.GetPodAttributes(identifier)
if !ok {
kp.logger.Debug("No pod with given id found", zap.Any("pod_id", identifier))
return nil
}
return attributes
}