-
Notifications
You must be signed in to change notification settings - Fork 832
/
transformMetrics.ts
261 lines (248 loc) · 7.71 KB
/
transformMetrics.ts
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*
* Copyright The 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
*
* https://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.
*/
import { SpanAttributes, HrTime } from '@opentelemetry/api';
import { Labels, ValueType } from '@opentelemetry/api-metrics';
import * as core from '@opentelemetry/core';
import {
AggregatorKind,
Histogram,
MetricKind,
MetricRecord,
} from '@opentelemetry/sdk-metrics-base';
import { Resource } from '@opentelemetry/resources';
import { OTLPExporterBase } from './OTLPExporterBase';
import { toCollectorResource } from './transform';
import { OTLPExporterConfigBase, opentelemetryProto } from './types';
/**
* Converts labels
* @param labels
*/
export function toCollectorLabels(
labels: Labels
): opentelemetryProto.common.v1.StringKeyValue[] {
return Object.entries(labels).map(([key, value]) => {
return { key, value: String(value) };
});
}
/**
* Given a MetricDescriptor, return its temporality in a compatible format with the collector
* @param descriptor
*/
export function toAggregationTemporality(
metric: MetricRecord
): opentelemetryProto.metrics.v1.AggregationTemporality {
if (metric.descriptor.metricKind === MetricKind.VALUE_OBSERVER) {
return opentelemetryProto.metrics.v1.AggregationTemporality
.AGGREGATION_TEMPORALITY_UNSPECIFIED;
}
return metric.aggregationTemporality;
}
/**
* Returns an DataPoint which can have integers or doublle values
* @param metric
* @param startTime
*/
export function toDataPoint(
metric: MetricRecord,
startTime: number
): opentelemetryProto.metrics.v1.DataPoint {
return {
labels: toCollectorLabels(metric.labels),
value: metric.aggregator.toPoint().value as number,
startTimeUnixNano: startTime,
timeUnixNano: core.hrTimeToNanoseconds(
metric.aggregator.toPoint().timestamp
),
};
}
/**
* Returns a HistogramPoint to the collector
* @param metric
* @param startTime
*/
export function toHistogramPoint(
metric: MetricRecord,
startTime: number
): opentelemetryProto.metrics.v1.HistogramDataPoint {
const { value, timestamp } = metric.aggregator.toPoint() as {
value: Histogram;
timestamp: HrTime;
};
return {
labels: toCollectorLabels(metric.labels),
sum: value.sum,
count: value.count,
startTimeUnixNano: startTime,
timeUnixNano: core.hrTimeToNanoseconds(timestamp),
bucketCounts: value.buckets.counts,
explicitBounds: value.buckets.boundaries,
};
}
/**
* Converts a metric to be compatible with the collector
* @param metric
* @param startTime start time in nanoseconds
*/
export function toCollectorMetric(
metric: MetricRecord,
startTime: number
): opentelemetryProto.metrics.v1.Metric {
const metricCollector: opentelemetryProto.metrics.v1.Metric = {
name: metric.descriptor.name,
description: metric.descriptor.description,
unit: metric.descriptor.unit,
};
if (
metric.aggregator.kind === AggregatorKind.SUM ||
metric.descriptor.metricKind === MetricKind.SUM_OBSERVER ||
metric.descriptor.metricKind === MetricKind.UP_DOWN_SUM_OBSERVER
) {
const result = {
dataPoints: [toDataPoint(metric, startTime)],
isMonotonic:
metric.descriptor.metricKind === MetricKind.COUNTER ||
metric.descriptor.metricKind === MetricKind.SUM_OBSERVER,
aggregationTemporality: toAggregationTemporality(metric),
};
if (metric.descriptor.valueType === ValueType.INT) {
metricCollector.intSum = result;
} else {
metricCollector.doubleSum = result;
}
} else if (metric.aggregator.kind === AggregatorKind.LAST_VALUE) {
const result = {
dataPoints: [toDataPoint(metric, startTime)],
};
if (metric.descriptor.valueType === ValueType.INT) {
metricCollector.intGauge = result;
} else {
metricCollector.doubleGauge = result;
}
} else if (metric.aggregator.kind === AggregatorKind.HISTOGRAM) {
const result = {
dataPoints: [toHistogramPoint(metric, startTime)],
aggregationTemporality: toAggregationTemporality(metric),
};
if (metric.descriptor.valueType === ValueType.INT) {
metricCollector.intHistogram = result;
} else {
metricCollector.doubleHistogram = result;
}
}
return metricCollector;
}
/**
* Prepares metric service request to be sent to collector
* @param metrics metrics
* @param startTime start time of the metric in nanoseconds
* @param collectorMetricExporterBase
*/
export function toOTLPExportMetricServiceRequest<
T extends OTLPExporterConfigBase
>(
metrics: MetricRecord[],
startTime: number,
collectorExporterBase: OTLPExporterBase<
T,
MetricRecord,
opentelemetryProto.collector.metrics.v1.ExportMetricsServiceRequest
>
): opentelemetryProto.collector.metrics.v1.ExportMetricsServiceRequest {
const groupedMetrics: Map<
Resource,
Map<core.InstrumentationLibrary, MetricRecord[]>
> = groupMetricsByResourceAndLibrary(metrics);
const additionalAttributes = Object.assign(
{},
collectorExporterBase.attributes
);
return {
resourceMetrics: toCollectorResourceMetrics(
groupedMetrics,
additionalAttributes,
startTime
),
};
}
/**
* Takes an array of metrics and groups them by resource and instrumentation
* library
* @param metrics metrics
*/
export function groupMetricsByResourceAndLibrary(
metrics: MetricRecord[]
): Map<Resource, Map<core.InstrumentationLibrary, MetricRecord[]>> {
return metrics.reduce((metricMap, metric) => {
//group by resource
let resourceMetrics = metricMap.get(metric.resource);
if (!resourceMetrics) {
resourceMetrics = new Map<core.InstrumentationLibrary, MetricRecord[]>();
metricMap.set(metric.resource, resourceMetrics);
}
//group by instrumentation library
let libMetrics = resourceMetrics.get(metric.instrumentationLibrary);
if (!libMetrics) {
libMetrics = new Array<MetricRecord>();
resourceMetrics.set(metric.instrumentationLibrary, libMetrics);
}
libMetrics.push(metric);
return metricMap;
}, new Map<Resource, Map<core.InstrumentationLibrary, MetricRecord[]>>());
}
/**
* Convert to InstrumentationLibraryMetrics
* @param instrumentationLibrary
* @param metrics
* @param startTime
*/
function toCollectorInstrumentationLibraryMetrics(
instrumentationLibrary: core.InstrumentationLibrary,
metrics: MetricRecord[],
startTime: number
): opentelemetryProto.metrics.v1.InstrumentationLibraryMetrics {
return {
metrics: metrics.map(metric => toCollectorMetric(metric, startTime)),
instrumentationLibrary,
};
}
/**
* Returns a list of resource metrics which will be exported to the collector
* @param groupedSpans
* @param baseAttributes
*/
function toCollectorResourceMetrics(
groupedMetrics: Map<
Resource,
Map<core.InstrumentationLibrary, MetricRecord[]>
>,
baseAttributes: SpanAttributes,
startTime: number
): opentelemetryProto.metrics.v1.ResourceMetrics[] {
return Array.from(groupedMetrics, ([resource, libMetrics]) => {
return {
resource: toCollectorResource(resource, baseAttributes),
instrumentationLibraryMetrics: Array.from(
libMetrics,
([instrumentationLibrary, metrics]) =>
toCollectorInstrumentationLibraryMetrics(
instrumentationLibrary,
metrics,
startTime
)
),
};
});
}