forked from SumoLogic/sumologic-otel-collector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmetric_opt.go
156 lines (136 loc) · 3.61 KB
/
metric_opt.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
// Copyright 2021, 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 telegrafreceiver
import (
"time"
"github.com/influxdata/telegraf"
"go.opentelemetry.io/collector/pdata/pcommon"
"go.opentelemetry.io/collector/pdata/pmetric"
)
// MetricOpt is an option func that takes in a pmetric.Metric and manipulates it.
type MetricOpt func(m pmetric.Metric)
// WithName returns a MetricOpt which will set the returned metric name.
func WithName(name string) MetricOpt {
return func(m pmetric.Metric) {
m.SetName(name)
}
}
func dataPointTimeOpt(t time.Time) TimeOpt {
return func() time.Time {
return t
}
}
// WithTime returns a MetricOpt which will set the returned metric's timestamp.
func WithTime(t time.Time) MetricOpt {
return func(m pmetric.Metric) {
opts := options{
timeopt: dataPointTimeOpt(t),
}
switch m.Type() {
case pmetric.MetricTypeGauge:
handleDataPoints(
m.Gauge().DataPoints(),
opts,
)
case pmetric.MetricTypeSum:
handleDataPoints(
m.Sum().DataPoints(),
opts,
)
}
}
}
// WithField returns a MetricOpt which will set the returned metric's
// field tag to the specified one.
func WithField(field string) MetricOpt {
f := WithTag(&telegraf.Tag{Key: fieldLabel, Value: field})
return func(m pmetric.Metric) {
f(m)
}
}
type AttributeMapOpt func(attributeMap pcommon.Map)
type TimeOpt func() time.Time
type options struct {
stringMapOpts []AttributeMapOpt
timeopt TimeOpt
}
func handleDataPoints(dps pmetric.NumberDataPointSlice, opts options) {
for i := 0; i < dps.Len(); i++ {
dp := dps.At(i)
for _, opt := range opts.stringMapOpts {
opt(dp.Attributes())
}
if opts.timeopt != nil {
dp.SetTimestamp(pcommon.Timestamp(opts.timeopt().UnixNano()))
}
}
}
func insertTagToPdataStringMapOpt(tag *telegraf.Tag) func(attributeMap pcommon.Map) {
return func(sm pcommon.Map) {
sm.PutStr(tag.Key, tag.Value)
}
}
// WithTag returns a MetricOpt which will insert a specified telegraf tag into
// all underlying data points' label maps.
func WithTag(tag *telegraf.Tag) MetricOpt {
return func(m pmetric.Metric) {
opts := options{
stringMapOpts: []AttributeMapOpt{
insertTagToPdataStringMapOpt(tag),
},
}
switch m.Type() {
case pmetric.MetricTypeGauge:
handleDataPoints(
m.Gauge().DataPoints(),
opts,
)
case pmetric.MetricTypeSum:
handleDataPoints(
m.Sum().DataPoints(),
opts,
)
}
}
}
func insertTagsToPdataStringMapOpt(tags []*telegraf.Tag) func(attributeMap pcommon.Map) {
return func(sm pcommon.Map) {
for _, tag := range tags {
sm.PutStr(tag.Key, tag.Value)
}
}
}
// WithTags returns a MetricOpt which will insert a list of telegraf tags into
// all underlying data points' label maps.
func WithTags(tags []*telegraf.Tag) MetricOpt {
return func(m pmetric.Metric) {
opts := options{
stringMapOpts: []AttributeMapOpt{
insertTagsToPdataStringMapOpt(tags),
},
}
switch m.Type() {
case pmetric.MetricTypeGauge:
handleDataPoints(
m.Gauge().DataPoints(),
opts,
)
case pmetric.MetricTypeSum:
handleDataPoints(
m.Sum().DataPoints(),
opts,
)
}
}
}