forked from SumoLogic/sumologic-otel-collector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloud_namespace_processor.go
90 lines (78 loc) · 3.14 KB
/
cloud_namespace_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
// 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 (
conventions "go.opentelemetry.io/collector/model/semconv/v1.6.1"
"go.opentelemetry.io/collector/pdata/pcommon"
"go.opentelemetry.io/collector/pdata/plog"
"go.opentelemetry.io/collector/pdata/pmetric"
"go.opentelemetry.io/collector/pdata/ptrace"
)
// cloudNamespaceProcessor adds the `cloud.namespace` resource attribute to logs, metrics and traces.
type cloudNamespaceProcessor struct {
addCloudNamespace bool
}
const (
cloudNamespaceAttributeName = "cloud.namespace"
cloudNamespaceAwsEc2 = "aws/ec2"
cloudNamespaceAwsEcs = "ecs"
cloudNamespaceAwsBeanstalk = "ElasticBeanstalk"
)
func newCloudNamespaceProcessor(addCloudNamespace bool) (*cloudNamespaceProcessor, error) {
return &cloudNamespaceProcessor{
addCloudNamespace: addCloudNamespace,
}, nil
}
func (*cloudNamespaceProcessor) processLogs(logs plog.Logs) error {
for i := 0; i < logs.ResourceLogs().Len(); i++ {
addCloudNamespaceAttribute(logs.ResourceLogs().At(i).Resource().Attributes())
}
return nil
}
func (*cloudNamespaceProcessor) processMetrics(metrics pmetric.Metrics) error {
for i := 0; i < metrics.ResourceMetrics().Len(); i++ {
addCloudNamespaceAttribute(metrics.ResourceMetrics().At(i).Resource().Attributes())
}
return nil
}
func (*cloudNamespaceProcessor) processTraces(traces ptrace.Traces) error {
for i := 0; i < traces.ResourceSpans().Len(); i++ {
addCloudNamespaceAttribute(traces.ResourceSpans().At(i).Resource().Attributes())
}
return nil
}
func (proc *cloudNamespaceProcessor) isEnabled() bool {
return proc.addCloudNamespace
}
func (*cloudNamespaceProcessor) ConfigPropertyName() string {
return "add_cloud_namespace"
}
// addCloudNamespaceAttribute adds the `cloud.namespace` attribute
// to a collection of attributes that already contains a `cloud.platform` attribute.
// It does not add the `cloud.namespace` attribute for all `cloud.platform` values,
// but only for a few specific ones - namely AWS EC2, AWS ECS, and AWS Elastic Beanstalk.
func addCloudNamespaceAttribute(attributes pcommon.Map) {
cloudPlatformAttributeValue, found := attributes.Get(conventions.AttributeCloudPlatform)
if !found {
return
}
switch cloudPlatformAttributeValue.Str() {
case conventions.AttributeCloudPlatformAWSEC2:
attributes.PutStr(cloudNamespaceAttributeName, cloudNamespaceAwsEc2)
case conventions.AttributeCloudPlatformAWSECS:
attributes.PutStr(cloudNamespaceAttributeName, cloudNamespaceAwsEcs)
case conventions.AttributeCloudPlatformAWSElasticBeanstalk:
attributes.PutStr(cloudNamespaceAttributeName, cloudNamespaceAwsBeanstalk)
}
}