forked from SumoLogic/sumologic-otel-collector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
aggregate_attributes_processor.go
182 lines (157 loc) · 5 KB
/
aggregate_attributes_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
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
// Copyright 2022 Sumo Logic, Inc.
//
// 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 sumologicschemaprocessor
import (
"fmt"
"strings"
"go.opentelemetry.io/collector/pdata/pcommon"
"go.opentelemetry.io/collector/pdata/plog"
"go.opentelemetry.io/collector/pdata/pmetric"
"go.opentelemetry.io/collector/pdata/ptrace"
)
// aggregateAttributesProcessor
type aggregateAttributesProcessor struct {
aggregations []*aggregation
}
type aggregation struct {
attribute string
prefixes []string
}
func newAggregateAttributesProcessor(config []aggregationPair) (*aggregateAttributesProcessor, error) {
aggregations := []*aggregation{}
for i := 0; i < len(config); i++ {
pair := &aggregation{
attribute: config[i].Attribute,
prefixes: config[i].Patterns,
}
aggregations = append(aggregations, pair)
}
return &aggregateAttributesProcessor{aggregations: aggregations}, nil
}
func (proc *aggregateAttributesProcessor) processLogs(logs plog.Logs) error {
for i := 0; i < logs.ResourceLogs().Len(); i++ {
resourceLogs := logs.ResourceLogs().At(i)
err := proc.processAttributes(resourceLogs.Resource().Attributes())
if err != nil {
return err
}
for j := 0; j < resourceLogs.ScopeLogs().Len(); j++ {
scopeLogs := resourceLogs.ScopeLogs().At(j)
for k := 0; k < scopeLogs.LogRecords().Len(); k++ {
err := proc.processAttributes(scopeLogs.LogRecords().At(k).Attributes())
if err != nil {
return err
}
}
}
}
return nil
}
func (proc *aggregateAttributesProcessor) processMetrics(metrics pmetric.Metrics) error {
for i := 0; i < metrics.ResourceMetrics().Len(); i++ {
resourceMetrics := metrics.ResourceMetrics().At(i)
err := proc.processAttributes(resourceMetrics.Resource().Attributes())
if err != nil {
return err
}
for j := 0; j < resourceMetrics.ScopeMetrics().Len(); j++ {
scopeMetrics := resourceMetrics.ScopeMetrics().At(j)
for k := 0; k < scopeMetrics.Metrics().Len(); k++ {
err := processMetricLevelAttributes(proc, scopeMetrics.Metrics().At(k))
if err != nil {
return err
}
}
}
}
return nil
}
func (proc *aggregateAttributesProcessor) processTraces(traces ptrace.Traces) error {
for i := 0; i < traces.ResourceSpans().Len(); i++ {
resourceSpans := traces.ResourceSpans().At(i)
err := proc.processAttributes(resourceSpans.Resource().Attributes())
if err != nil {
return err
}
for j := 0; j < resourceSpans.ScopeSpans().Len(); j++ {
scopeSpans := resourceSpans.ScopeSpans().At(j)
for k := 0; k < scopeSpans.Spans().Len(); k++ {
err := proc.processAttributes(scopeSpans.Spans().At(k).Attributes())
if err != nil {
return err
}
}
}
}
return nil
}
func (proc *aggregateAttributesProcessor) isEnabled() bool {
return len(proc.aggregations) != 0
}
func (*aggregateAttributesProcessor) ConfigPropertyName() string {
return "aggregate_attributes"
}
func (proc *aggregateAttributesProcessor) processAttributes(attributes pcommon.Map) error {
for i := 0; i < len(proc.aggregations); i++ {
curr := proc.aggregations[i]
names := []string{}
attrs := []pcommon.Value{}
for j := 0; j < len(curr.prefixes); j++ {
prefix := curr.prefixes[j]
// Create a new map. Unused keys will be added here,
// so we can check them against other prefixes.
newMap := pcommon.NewMap()
newMap.EnsureCapacity(attributes.Len())
attributes.Range(func(key string, value pcommon.Value) bool {
ok, trimmedKey := getNewKey(key, prefix)
if ok {
// TODO: Potential name conflict to resolve, eg.:
// pod_* matches pod_foo
// pod2_* matches pod2_foo
// both will be renamed to foo
names = append(names, trimmedKey)
val := pcommon.NewValueEmpty()
value.CopyTo(val)
attrs = append(attrs, val)
} else {
value.CopyTo(newMap.PutEmpty(key))
}
return true
})
newMap.CopyTo(attributes)
}
if len(names) != len(attrs) {
return fmt.Errorf(
"internal error: number of values does not equal the number of keys; len(keys) = %d, len(values) = %d",
len(names),
len(attrs),
)
}
// Add a new attribute only if there's anything that should be put under it.
if len(names) > 0 {
aggregated := attributes.PutEmptyMap(curr.attribute)
for j := 0; j < len(names); j++ {
attrs[j].CopyTo(aggregated.PutEmpty(names[j]))
}
}
}
return nil
}
// Checks if the key has given prefix and trims it if so.
func getNewKey(key string, prefix string) (bool, string) {
if strings.HasPrefix(key, prefix) {
return true, strings.TrimPrefix(key, prefix)
}
return false, ""
}