-
Notifications
You must be signed in to change notification settings - Fork 807
/
OTLPGRPCExporterNodeBase.ts
133 lines (123 loc) · 4.32 KB
/
OTLPGRPCExporterNodeBase.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
/*
* 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 { diag } from '@opentelemetry/api';
import { OTLPGRPCExporterConfigNode } from './types';
import {
OTLPExporterBase,
OTLPExporterError,
} from '@opentelemetry/otlp-exporter-base';
import {
createEmptyMetadata,
GrpcExporterTransport,
} from './grpc-exporter-transport';
import { ISerializer } from '@opentelemetry/otlp-transformer';
import { IExporterTransport } from '@opentelemetry/otlp-exporter-base';
import {
getOtlpGrpcDefaultConfiguration,
mergeOtlpGrpcConfigurationWithDefaults,
} from './configuration/otlp-grpc-configuration';
import { getOtlpGrpcConfigurationFromEnv } from './configuration/otlp-grpc-env-configuration';
/**
* OTLP Exporter abstract base class
*/
export abstract class OTLPGRPCExporterNodeBase<
ExportItem,
ServiceResponse,
> extends OTLPExporterBase<OTLPGRPCExporterConfigNode, ExportItem> {
private _transport: IExporterTransport;
private _serializer: ISerializer<ExportItem[], ServiceResponse>;
private _timeoutMillis: number;
constructor(
config: OTLPGRPCExporterConfigNode = {},
serializer: ISerializer<ExportItem[], ServiceResponse>,
grpcName: string,
grpcPath: string,
signalIdentifier: string
) {
super(config);
// keep credentials locally in case user updates the reference on the config object
const userProvidedCredentials = config.credentials;
const actualConfig = mergeOtlpGrpcConfigurationWithDefaults(
{
url: config.url,
metadata: () => {
// metadata resolution strategy is merge, so we can return empty here, and it will not override the rest of the settings.
return config.metadata ?? createEmptyMetadata();
},
compression: config.compression,
timeoutMillis: config.timeoutMillis,
concurrencyLimit: config.concurrencyLimit,
credentials:
userProvidedCredentials != null
? () => userProvidedCredentials
: undefined,
},
getOtlpGrpcConfigurationFromEnv(signalIdentifier),
getOtlpGrpcDefaultConfiguration()
);
this._serializer = serializer;
this._timeoutMillis = actualConfig.timeoutMillis;
this._concurrencyLimit = actualConfig.concurrencyLimit;
if (config.headers) {
diag.warn('Headers cannot be set when using grpc');
}
this._transport = new GrpcExporterTransport({
address: actualConfig.url,
compression: actualConfig.compression,
credentials: actualConfig.credentials,
grpcName: grpcName,
grpcPath: grpcPath,
metadata: actualConfig.metadata,
});
}
override onShutdown() {
this._transport.shutdown();
}
send(
objects: ExportItem[],
onSuccess: () => void,
onError: (error: OTLPExporterError) => void
): void {
if (this._shutdownOnce.isCalled) {
diag.debug('Shutdown already started. Cannot send objects');
return;
}
const data = this._serializer.serializeRequest(objects);
if (data == null) {
onError(new Error('Could not serialize message'));
return;
}
const promise = this._transport
.send(data, this._timeoutMillis)
.then(response => {
if (response.status === 'success') {
onSuccess();
} else if (response.status === 'failure' && response.error) {
onError(response.error);
} else if (response.status === 'retryable') {
onError(new OTLPExporterError('Export failed with retryable status'));
} else {
onError(new OTLPExporterError('Export failed with unknown error'));
}
}, onError);
this._sendingPromises.push(promise);
const popPromise = () => {
const index = this._sendingPromises.indexOf(promise);
this._sendingPromises.splice(index, 1);
};
promise.then(popPromise, popPromise);
}
}