-
Notifications
You must be signed in to change notification settings - Fork 834
/
Copy pathutil.ts
127 lines (118 loc) · 3.78 KB
/
util.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
/*
* 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 * as grpc from '@grpc/grpc-js';
import * as protoLoader from '@grpc/proto-loader';
import { diag } from '@opentelemetry/api';
import { globalErrorHandler } from '@opentelemetry/core';
import { otlpTypes } from '@opentelemetry/exporter-otlp-http';
import * as path from 'path';
import { OTLPExporterNodeBase } from './OTLPExporterNodeBase';
import { URL } from 'url';
import {
OTLPExporterConfigNode,
GRPCQueueItem,
ServiceClientType,
} from './types';
export function onInit<ExportItem, ServiceRequest>(
collector: OTLPExporterNodeBase<ExportItem, ServiceRequest>,
config: OTLPExporterConfigNode
): void {
collector.grpcQueue = [];
const credentials: grpc.ChannelCredentials =
config.credentials || grpc.credentials.createInsecure();
const includeDirs = [path.resolve(__dirname, '..', 'protos')];
protoLoader
.load(collector.getServiceProtoPath(), {
keepCase: false,
longs: String,
enums: String,
defaults: true,
oneofs: true,
includeDirs,
})
.then(packageDefinition => {
const packageObject: any = grpc.loadPackageDefinition(packageDefinition);
if (collector.getServiceClientType() === ServiceClientType.SPANS) {
collector.serviceClient =
new packageObject.opentelemetry.proto.collector.trace.v1.TraceService(
collector.url,
credentials,
);
} else {
collector.serviceClient =
new packageObject.opentelemetry.proto.collector.metrics.v1.MetricsService(
collector.url,
credentials,
);
}
if (collector.grpcQueue.length > 0) {
const queue = collector.grpcQueue.splice(0);
queue.forEach((item: GRPCQueueItem<ExportItem>) => {
collector.send(item.objects, item.onSuccess, item.onError);
});
}
})
.catch(err => {
globalErrorHandler(err);
});
}
export function send<ExportItem, ServiceRequest>(
collector: OTLPExporterNodeBase<ExportItem, ServiceRequest>,
objects: ExportItem[],
onSuccess: () => void,
onError: (error: otlpTypes.OTLPExporterError) => void
): void {
if (collector.serviceClient) {
const serviceRequest = collector.convert(objects);
collector.serviceClient.export(
serviceRequest,
collector.metadata || new grpc.Metadata(),
(err: otlpTypes.ExportServiceError) => {
if (err) {
diag.error('Service request', serviceRequest);
onError(err);
} else {
diag.debug('Objects sent');
onSuccess();
}
}
);
} else {
collector.grpcQueue.push({
objects,
onSuccess,
onError,
});
}
}
export function validateAndNormalizeUrl(url: string): string {
const hasProtocol = url.match(/^([\w]{1,8}):\/\//);
if (!hasProtocol) {
url = `https://${url}`;
}
const target = new URL(url);
if (target.pathname && target.pathname !== '/') {
diag.warn(
'URL path should not be set when using grpc, the path part of the URL will be ignored.'
);
}
if (target.protocol !== '' && !target.protocol?.match(/(http|grpc)s?/)) {
diag.warn(
'URL protocol should be http(s):// or grpc(s)://. Using grpc://.'
);
}
return target.host;
}