forked from aws-observability/aws-otel-js-instrumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregister.ts
110 lines (92 loc) · 5.08 KB
/
register.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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// Modifications Copyright The OpenTelemetry Authors. Licensed under the Apache License 2.0 License.
// Short-term workaround to avoid Upsteam OTel emitting logs such as:
// - `OTEL_TRACES_SAMPLER value "xray invalid, defaulting to always_on".`
// OTel dependencies will always load a default Sampler configuration. Although unused, that
// load process will read the `OTEL_TRACES_SAMPLER` value and may emit the above log, which is
// unwanted for `xray` value. Thus we temporarily remove this env var to avoid the unwanted log.
let useXraySampler = false;
if (process.env.OTEL_TRACES_SAMPLER === 'xray') {
delete process.env.OTEL_TRACES_SAMPLER;
useXraySampler = true;
}
import { diag, DiagConsoleLogger, trace } from '@opentelemetry/api';
import { getNodeAutoInstrumentations, InstrumentationConfigMap } from '@opentelemetry/auto-instrumentations-node';
import { Instrumentation } from '@opentelemetry/instrumentation';
import * as opentelemetry from '@opentelemetry/sdk-node';
import { AwsOpentelemetryConfigurator } from './aws-opentelemetry-configurator';
import { applyInstrumentationPatches, customExtractor } from './patches/instrumentation-patch';
diag.setLogger(new DiagConsoleLogger(), opentelemetry.core.getEnv().OTEL_LOG_LEVEL);
/*
Sets up default environment variables and apply patches
Set default OTEL_EXPORTER_OTLP_PROTOCOL to be `http/protobuf` to remain consistent with other ADOT languages. This must be run before
`configurator.configure()`, which will use this value to create an OTel Metric Exporter that is used for the customized AWS Span Procesors.
The default value of OTEL_EXPORTER_OTLP_PROTOCOL should be `http/protobuf`:
https://github.com/open-telemetry/opentelemetry-js/blob/34003c9b7ef7e7e95e86986550d1c7fb6c1c56c6/packages/opentelemetry-core/src/utils/environment.ts#L233
Also sets default OTEL_PROPAGATORS to ensure good compatibility with X-Ray and Application Signals.
This file may also be used to apply patches to upstream instrumentation - usually these are stopgap measures until we can contribute
long-term changes to upstream.
*/
export function setAwsDefaultEnvironmentVariables(): void {
if (!process.env.OTEL_EXPORTER_OTLP_PROTOCOL) {
process.env.OTEL_EXPORTER_OTLP_PROTOCOL = 'http/protobuf';
}
if (!process.env.OTEL_PROPAGATORS) {
process.env.OTEL_PROPAGATORS = 'xray,tracecontext';
}
// Disable the following instrumentations by default
// This auto-instrumentation for the `fs` module generates many low-value spans. `dns` is similar.
// https://github.com/open-telemetry/opentelemetry-js-contrib/issues/1344#issuecomment-1618993178
if (!process.env.OTEL_NODE_DISABLED_INSTRUMENTATIONS) {
process.env.OTEL_NODE_DISABLED_INSTRUMENTATIONS = 'fs,dns';
}
}
setAwsDefaultEnvironmentVariables();
export const instrumentationConfigs: InstrumentationConfigMap = {
'@opentelemetry/instrumentation-aws-lambda': {
eventContextExtractor: customExtractor,
},
'@opentelemetry/instrumentation-aws-sdk': {
suppressInternalInstrumentation: true,
},
'@opentelemetry/instrumentation-mongoose': {
suppressInternalInstrumentation: true,
},
};
const instrumentations: Instrumentation[] = getNodeAutoInstrumentations(instrumentationConfigs);
// Apply instrumentation patches
applyInstrumentationPatches(instrumentations);
const configurator: AwsOpentelemetryConfigurator = new AwsOpentelemetryConfigurator(instrumentations, useXraySampler);
const configuration: Partial<opentelemetry.NodeSDKConfiguration> = configurator.configure();
const sdk: opentelemetry.NodeSDK = new opentelemetry.NodeSDK(configuration);
// The OpenTelemetry Authors code
// We need to copy OpenTelemetry's register.ts file in order to provide the configuration
// created by AwsOpentelemetryConfigurator, which cannot be done by otherwise. In the long term,
// we wish to make contributions to upstream to improve customizability of the Node auto-instrumentation.
try {
sdk.start();
diag.info('Setting TraceProvider for instrumentations at the end of initialization');
for (const instrumentation of instrumentations) {
instrumentation.setTracerProvider(trace.getTracerProvider());
}
diag.debug(`Environment variable OTEL_PROPAGATORS is set to '${process.env.OTEL_PROPAGATORS}'`);
diag.debug(`Environment variable OTEL_EXPORTER_OTLP_PROTOCOL is set to '${process.env.OTEL_EXPORTER_OTLP_PROTOCOL}'`);
diag.info('AWS Distro of OpenTelemetry automatic instrumentation started successfully');
} catch (error) {
diag.error(
'Error initializing AWS Distro of OpenTelemetry SDK. Your application is not instrumented and will not produce telemetry',
error
);
}
process.on('SIGTERM', () => {
sdk
.shutdown()
.then(() => diag.debug('AWS Distro of OpenTelemetry SDK terminated'))
.catch(error => diag.error('Error terminating AWS Distro of OpenTelemetry SDK', error));
});
// END The OpenTelemetry Authors code
// Respect original `OTEL_TRACES_SAMPLER` as we previously deleted it temporarily for value `xray`
if (useXraySampler) {
process.env.OTEL_TRACES_SAMPLER = 'xray';
}