forked from aws-observability/aws-otel-js-instrumentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws-opentelemetry-configurator.ts
677 lines (603 loc) · 29.5 KB
/
aws-opentelemetry-configurator.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
// 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.
import { TextMapPropagator, diag } from '@opentelemetry/api';
import { getPropagator } from '@opentelemetry/auto-configuration-propagators';
import { getResourceDetectors as getResourceDetectorsFromEnv } from '@opentelemetry/auto-instrumentations-node';
import { ENVIRONMENT, TracesSamplerValues, getEnv, getEnvWithoutDefaults } from '@opentelemetry/core';
import { OTLPMetricExporter as OTLPGrpcOTLPMetricExporter } from '@opentelemetry/exporter-metrics-otlp-grpc';
import {
AggregationTemporalityPreference,
OTLPMetricExporter as OTLPHttpOTLPMetricExporter,
} from '@opentelemetry/exporter-metrics-otlp-http';
import { OTLPTraceExporter as OTLPGrpcTraceExporter } from '@opentelemetry/exporter-trace-otlp-grpc';
import { OTLPTraceExporter as OTLPHttpTraceExporter } from '@opentelemetry/exporter-trace-otlp-http';
import { OTLPTraceExporter as OTLPProtoTraceExporter } from '@opentelemetry/exporter-trace-otlp-proto';
import { ZipkinExporter } from '@opentelemetry/exporter-zipkin';
import { AWSXRayIdGenerator } from '@opentelemetry/id-generator-aws-xray';
import { Instrumentation } from '@opentelemetry/instrumentation';
import { awsEc2DetectorSync, awsEcsDetectorSync, awsEksDetectorSync } from '@opentelemetry/resource-detector-aws';
import {
Detector,
DetectorSync,
Resource,
ResourceDetectionConfig,
detectResourcesSync,
envDetectorSync,
hostDetector,
processDetector,
} from '@opentelemetry/resources';
import {
Aggregation,
AggregationSelector,
InstrumentType,
MeterProvider,
PeriodicExportingMetricReader,
PushMetricExporter,
} from '@opentelemetry/sdk-metrics';
import { NodeSDKConfiguration } from '@opentelemetry/sdk-node';
import {
AlwaysOffSampler,
AlwaysOnSampler,
BatchSpanProcessor,
ConsoleSpanExporter,
IdGenerator,
ParentBasedSampler,
Sampler,
SimpleSpanProcessor,
SpanExporter,
SpanProcessor,
TraceIdRatioBasedSampler,
} from '@opentelemetry/sdk-trace-base';
import { SEMRESATTRS_TELEMETRY_AUTO_VERSION } from '@opentelemetry/semantic-conventions';
import { AlwaysRecordSampler } from './always-record-sampler';
import { AttributePropagatingSpanProcessorBuilder } from './attribute-propagating-span-processor-builder';
import { AwsBatchUnsampledSpanProcessor } from './aws-batch-unsampled-span-processor';
import { AwsMetricAttributesSpanExporterBuilder } from './aws-metric-attributes-span-exporter-builder';
import { AwsSpanMetricsProcessorBuilder } from './aws-span-metrics-processor-builder';
import { OTLPAwsSpanExporter } from './otlp-aws-span-exporter';
import { OTLPUdpSpanExporter } from './otlp-udp-exporter';
import { AwsXRayRemoteSampler } from './sampler/aws-xray-remote-sampler';
// This file is generated via `npm run compile`
import { LIB_VERSION } from './version';
const XRAY_OTLP_ENDPOINT_PATTERN = '^https://xray\\.([a-z0-9-]+)\\.amazonaws\\.com/v1/traces$';
const APPLICATION_SIGNALS_ENABLED_CONFIG: string = 'OTEL_AWS_APPLICATION_SIGNALS_ENABLED';
const APPLICATION_SIGNALS_EXPORTER_ENDPOINT_CONFIG: string = 'OTEL_AWS_APPLICATION_SIGNALS_EXPORTER_ENDPOINT';
const METRIC_EXPORT_INTERVAL_CONFIG: string = 'OTEL_METRIC_EXPORT_INTERVAL';
const DEFAULT_METRIC_EXPORT_INTERVAL_MILLIS: number = 60000;
export const AWS_LAMBDA_FUNCTION_NAME_CONFIG: string = 'AWS_LAMBDA_FUNCTION_NAME';
const AWS_XRAY_DAEMON_ADDRESS_CONFIG: string = 'AWS_XRAY_DAEMON_ADDRESS';
const FORMAT_OTEL_SAMPLED_TRACES_BINARY_PREFIX = 'T1S';
const FORMAT_OTEL_UNSAMPLED_TRACES_BINARY_PREFIX = 'T1U';
// Follow Python SDK Impl to set the max span batch size
// which will reduce the chance of UDP package size is larger than 64KB
const LAMBDA_SPAN_EXPORT_BATCH_SIZE = 10;
/**
* Aws Application Signals Config Provider creates a configuration object that can be provided to
* the OTel NodeJS SDK for Auto Instrumentation with Application Signals Functionality.
*
* The config includes:
* - Use AlwaysRecordSampler (wraps around a specified Sampler) to record all spans.
* - Add SpanMetricsProcessor to create metrics.
* - Add AttributePropagatingSpanProcessor to propagate span attributes from parent to child spans.
* - Add AwsMetricAttributesSpanExporter to add more attributes to all spans.
*
* You can control when these customizations are applied using the environment variable
* OTEL_AWS_APPLICATION_SIGNALS_ENABLED. This flag is disabled by default.
*/
export class AwsOpentelemetryConfigurator {
private resource: Resource;
private instrumentations: Instrumentation[];
private idGenerator: IdGenerator;
private sampler: Sampler;
private spanProcessors: SpanProcessor[];
private propagator: TextMapPropagator;
/**
* The constructor will setup the AwsOpentelemetryConfigurator object to be able to provide a
* configuration for ADOT JavaScript Auto-Instrumentation.
*
* The `instrumentations` are the desired Node auto-instrumentations to be used when using ADOT JavaScript.
* The auto-Instrumentions are usually populated from OTel's `getNodeAutoInstrumentations()` method from the
* `@opentelemetry/auto-instrumentations-node` NPM package, and may have instrumentation patching applied.
*
* @constructor
* @param {Instrumentation[]} instrumentations - Auto-Instrumentations to be added to the ADOT Config
*/
public constructor(instrumentations: Instrumentation[], useXraySampler: boolean = false) {
/*
* Set and Detect Resources via Resource Detectors
*
* The configurator must create and detect resources in order to populate any detected
* resources into the Resource that is provided to the processors, exporters, and samplers
* that are instantiated in the configurator. Otherwise, if only OTel handles resource
* detection in the SDK, the AWS processors/exporters/samplers will lack such detected
* resources in their respective resources.
*/
let autoResource: Resource = new Resource({});
autoResource = this.customizeVersions(autoResource);
// The following if/else block is based on upstream's logic
// https://github.com/open-telemetry/opentelemetry-js/blob/95edbd9992434f31f50532fedb3c7e8db5164479/experimental/packages/opentelemetry-sdk-node/src/sdk.ts#L125-L129
// In all cases, we want to include the Env Detector (Sync) and the AWS Resource Detectors
let defaultDetectors: (Detector | DetectorSync)[] = [];
if (process.env.OTEL_NODE_RESOURCE_DETECTORS != null) {
defaultDetectors = getResourceDetectorsFromEnv();
// Add Env/AWS Resource Detectors if not present
const resourceDetectorsFromEnv: string[] = process.env.OTEL_NODE_RESOURCE_DETECTORS.split(',');
if (!resourceDetectorsFromEnv.includes('aws')) {
defaultDetectors.push(awsEc2DetectorSync, awsEcsDetectorSync, awsEksDetectorSync);
}
if (!resourceDetectorsFromEnv.includes('env')) {
defaultDetectors.push(envDetectorSync);
}
} else if (isLambdaEnvironment()) {
// If in Lambda environment, only keep env detector as default
defaultDetectors.push(envDetectorSync);
} else {
/*
* envDetectorSync is used as opposed to envDetector (async), so it is guaranteed that the
* resource is populated with configured OTEL_RESOURCE_ATTRIBUTES or OTEL_SERVICE_NAME env
* var values by the time that this class provides a configuration to the OTel SDK.
*
* envDetectorSync needs to be last so it can override any conflicting resource attributes.
*/
defaultDetectors = [
processDetector,
hostDetector,
awsEc2DetectorSync,
awsEcsDetectorSync,
awsEksDetectorSync,
envDetectorSync,
];
}
const internalConfig: ResourceDetectionConfig = {
detectors: defaultDetectors,
};
autoResource = autoResource.merge(detectResourcesSync(internalConfig));
this.resource = autoResource;
this.instrumentations = instrumentations;
this.propagator = getPropagator();
// TODO: Consider removing AWSXRayIdGenerator as it is not needed
// Similarly to Java, always use AWS X-Ray Id Generator
// https://github.com/aws-observability/aws-otel-java-instrumentation/blob/a011b8cc29ee32b7f668c04ccfdf64cd30de467c/awsagentprovider/src/main/java/software/amazon/opentelemetry/javaagent/providers/AwsTracerCustomizerProvider.java#L36
this.idGenerator = new AWSXRayIdGenerator();
this.sampler = AwsOpentelemetryConfigurator.customizeSampler(
customBuildSamplerFromEnv(this.resource, useXraySampler)
);
// default SpanProcessors with Span Exporters wrapped inside AwsMetricAttributesSpanExporter
const awsSpanProcessorProvider: AwsSpanProcessorProvider = new AwsSpanProcessorProvider(this.resource);
this.spanProcessors = awsSpanProcessorProvider.getSpanProcessors();
AwsOpentelemetryConfigurator.customizeSpanProcessors(this.spanProcessors, this.resource);
}
private customizeVersions(autoResource: Resource): Resource {
// eslint-disable-next-line @typescript-eslint/typedef
const DISTRO_VERSION: string = LIB_VERSION;
autoResource.attributes[SEMRESATTRS_TELEMETRY_AUTO_VERSION] = DISTRO_VERSION + '-aws';
diag.debug(
`@aws/aws-distro-opentelemetry-node-autoinstrumentation - version: ${autoResource.attributes[SEMRESATTRS_TELEMETRY_AUTO_VERSION]}`
);
return autoResource;
}
public configure(): Partial<NodeSDKConfiguration> {
// config.autoDetectResources is set to False, as the resources are detected and added to the
// resource ahead of time. The resource is needed to be populated ahead of time instead of letting
// the OTel Node SDK do the population work because the constructed resource was required to build
// the sampler (if using XRay sampler) and the AwsMetricAttributesSpanExporter and AwsSpanMetricsProcessor
const config: Partial<NodeSDKConfiguration> = {
instrumentations: this.instrumentations,
resource: this.resource,
idGenerator: this.idGenerator,
sampler: this.sampler,
// Error message 'Exporter "otlp" requested through environment variable is unavailable.'
// will appear from BasicTracerProvider that is used in the OTel JS SDK, even though the
// span processors are specified
// https://github.com/open-telemetry/opentelemetry-js/issues/3449
spanProcessors: this.spanProcessors,
autoDetectResources: false,
textMapPropagator: this.propagator,
};
return config;
}
static isApplicationSignalsEnabled(): boolean {
const isApplicationSignalsEnabled: string | undefined = process.env[APPLICATION_SIGNALS_ENABLED_CONFIG];
if (isApplicationSignalsEnabled === undefined) {
return false;
}
return isApplicationSignalsEnabled.toLowerCase() === 'true';
}
static customizeSpanProcessors(spanProcessors: SpanProcessor[], resource: Resource): void {
if (!AwsOpentelemetryConfigurator.isApplicationSignalsEnabled()) {
return;
}
diag.info('AWS Application Signals enabled.');
let exportIntervalMillis: number = Number(process.env[METRIC_EXPORT_INTERVAL_CONFIG]);
diag.debug(`AWS Application Signals Metrics export interval: ${exportIntervalMillis}`);
if (isNaN(exportIntervalMillis) || exportIntervalMillis.valueOf() > DEFAULT_METRIC_EXPORT_INTERVAL_MILLIS) {
exportIntervalMillis = DEFAULT_METRIC_EXPORT_INTERVAL_MILLIS;
diag.info(`AWS Application Signals metrics export interval capped to ${exportIntervalMillis}`);
}
spanProcessors.push(AttributePropagatingSpanProcessorBuilder.create().build());
if (isXrayOtlpEndpoint(process.env['OTEL_EXPORTER_OTLP_TRACES_ENDPOINT'])) {
return;
}
const applicationSignalsMetricExporter: PushMetricExporter =
ApplicationSignalsExporterProvider.Instance.createExporter();
const periodicExportingMetricReader: PeriodicExportingMetricReader = new PeriodicExportingMetricReader({
exporter: applicationSignalsMetricExporter,
exportIntervalMillis: exportIntervalMillis,
});
// Register BatchUnsampledSpanProcessor to export unsampled traces in Lambda
// when Application Signals enabled
if (isLambdaEnvironment() && !hasCustomOtlpTraceEndpoint()) {
const udpSpanExporter = new OTLPUdpSpanExporter(
getXrayDaemonEndpoint(),
FORMAT_OTEL_UNSAMPLED_TRACES_BINARY_PREFIX
);
const configuredExporter = AwsMetricAttributesSpanExporterBuilder.create(udpSpanExporter, resource).build();
spanProcessors.push(
new AwsBatchUnsampledSpanProcessor(configuredExporter, {
maxExportBatchSize: getSpanExportBatchSize(),
})
);
diag.info('Enabled batch unsampled span processor for Lambda environment.');
}
// Disable Application Metrics for Lambda environment
if (!isLambdaEnvironment()) {
const meterProvider: MeterProvider = new MeterProvider({
/** Resource associated with metric telemetry */
resource: resource,
readers: [periodicExportingMetricReader],
});
spanProcessors.push(
AwsSpanMetricsProcessorBuilder.create(
meterProvider,
resource,
meterProvider.forceFlush.bind(meterProvider)
).build()
);
}
}
static customizeSampler(sampler: Sampler): Sampler {
if (AwsOpentelemetryConfigurator.isApplicationSignalsEnabled()) {
return AlwaysRecordSampler.create(sampler);
}
return sampler;
}
}
export function customBuildSamplerFromEnv(resource: Resource, useXraySampler: boolean = false): Sampler {
if (useXraySampler || process.env.OTEL_TRACES_SAMPLER === 'xray') {
const samplerArgumentEnv: string | undefined = process.env.OTEL_TRACES_SAMPLER_ARG;
let endpoint: string | undefined = undefined;
let pollingInterval: number | undefined = undefined;
if (samplerArgumentEnv !== undefined) {
const args: string[] = samplerArgumentEnv.split(',');
for (const arg of args) {
const equalIndex: number = arg.indexOf('=');
if (equalIndex === -1) {
continue;
}
const keyValue: string[] = [arg.substring(0, equalIndex), arg.substring(equalIndex + 1)];
if (keyValue[0] === 'endpoint') {
endpoint = keyValue[1];
} else if (keyValue[0] === 'polling_interval') {
pollingInterval = Number(keyValue[1]);
if (isNaN(pollingInterval)) {
pollingInterval = undefined;
diag.error('polling_interval in OTEL_TRACES_SAMPLER_ARG must be a valid number');
}
}
}
}
diag.info('AWS XRay Sampler enabled');
diag.debug(`XRay Sampler Endpoint: ${endpoint}`);
diag.debug(`XRay Sampler Polling Interval: ${pollingInterval}`);
return new AwsXRayRemoteSampler({ resource: resource, endpoint: endpoint, pollingInterval: pollingInterval });
}
return buildSamplerFromEnv();
}
export class ApplicationSignalsExporterProvider {
private static _instance: ApplicationSignalsExporterProvider;
private constructor() {}
public static get Instance() {
return this._instance || (this._instance = new this());
}
public createExporter(): PushMetricExporter {
let protocol: string | undefined = process.env['OTEL_EXPORTER_OTLP_METRICS_PROTOCOL'];
if (protocol === undefined) {
protocol = process.env['OTEL_EXPORTER_OTLP_PROTOCOL'];
}
if (protocol === undefined) {
protocol = 'grpc';
}
diag.debug(`AWS Application Signals export protocol: ${protocol}`);
const temporalityPreference: AggregationTemporalityPreference = AggregationTemporalityPreference.DELTA;
const aggregationPreference: AggregationSelector = this.aggregationSelector;
if (protocol === 'http/protobuf') {
let applicationSignalsEndpoint: string | undefined = process.env[APPLICATION_SIGNALS_EXPORTER_ENDPOINT_CONFIG];
if (applicationSignalsEndpoint === undefined) {
applicationSignalsEndpoint = 'http://localhost:4316/v1/metrics';
}
diag.debug(`AWS Application Signals export endpoint: ${applicationSignalsEndpoint}`);
return new OTLPHttpOTLPMetricExporter({
url: applicationSignalsEndpoint,
temporalityPreference: temporalityPreference,
aggregationPreference: aggregationPreference,
});
}
if (protocol === 'grpc') {
let applicationSignalsEndpoint: string | undefined = process.env[APPLICATION_SIGNALS_EXPORTER_ENDPOINT_CONFIG];
if (applicationSignalsEndpoint === undefined) {
applicationSignalsEndpoint = 'http://localhost:4315';
}
diag.debug(`AWS Application Signals export endpoint: ${applicationSignalsEndpoint}`);
return new OTLPGrpcOTLPMetricExporter({
url: applicationSignalsEndpoint,
temporalityPreference: temporalityPreference,
aggregationPreference: aggregationPreference,
});
}
throw new Error(`Unsupported AWS Application Signals export protocol: ${protocol}`);
}
private aggregationSelector: AggregationSelector = (instrumentType: InstrumentType) => {
switch (instrumentType) {
case InstrumentType.HISTOGRAM: {
return Aggregation.ExponentialHistogram();
}
}
return Aggregation.Default();
};
}
// The OpenTelemetry Authors code
//
// ADOT JS needs the logic to (1) get the SpanExporters from Env and then (2) wrap the SpanExporters with AwsMetricAttributesSpanExporter
// However, the logic to perform (1) is only in the `TracerProviderWithEnvExporters` class, which is not exported publicly.
// `TracerProviderWithEnvExporters` is also responsible for (3) wrapping the SpanExporters inside the Simple/Batch SpanProcessors
// which must happen after (2). Thus in order to perform (1), (2), and (3), we need to add these non-exported methods here.
//
// https://github.com/open-telemetry/opentelemetry-js/blob/01cea7caeb130142cc017f77ea74834a35d0e8d6/experimental/packages/opentelemetry-sdk-node/src/TracerProviderWithEnvExporter.ts
//
// This class is a modified version of TracerProviderWithEnvExporters (extends NodeTracerProvider), without
// any of the TracerProvider functionalities. The AwsSpanProcessorProvider retains the functionality to
// only create the default span processors with exporters specified in `OTEL_TRACES_EXPORTER`. These span
// exporters are wrapped with AwsMetricAttributesSpanExporter when configuring the configureSpanProcessors
//
// Unlike `TracerProviderWithEnvExporters`, `AwsSpanProcessorProvider` does not extend `NodeTracerProvider`.
// The following class member variables are unmodified:
// - _configuredExporters
// - _spanProcessors
// The following class member variables are modified:
// - _hasSpanProcessors (removed)
// - resource (new)
// The following methods are unmodified:
// - configureOtlp(), getOtlpProtocol(), configureJaeger(), createExportersFromList(), _getSpanExporter(), filterBlanksAndNulls()
// The following methods are modified:
// - constructor() (modified)
// - removed usage of `this.addSpanProcessor(...)`, which calls `super.addSpanProcessor(...)`
// to register it to the BasicTracerProvider, which should be done later by the OTel JS SDK
// - configureSpanProcessors(exporters) (modified)
// - wrap exporters with customizeSpanExporter()
// - customizeSpanExporter() (new)
// - getSpanProcessors() (new)
// - override addSpanProcessor() (removed)
// - override register() (removed)
//
// TODO: `TracerProviderWithEnvExporters` is not exported, thus its useful static methods that
// provides some default SpanExporter configurations are unavailable. Ideally, we could contribute
// to upstream to export `TracerProviderWithEnvExporters`
export class AwsSpanProcessorProvider {
private _configuredExporters: SpanExporter[] = [];
private _spanProcessors: SpanProcessor[] = [];
private resource: Resource;
static configureOtlp(): SpanExporter {
const otlp_exporter_traces_endpoint = process.env['OTEL_EXPORTER_OTLP_TRACES_ENDPOINT'];
// eslint-disable-next-line @typescript-eslint/typedef
let protocol = this.getOtlpProtocol();
// If `isLambdaEnvironment` is true, we will default to exporting OTel spans via `udp_exporter` to Fluxpump,
// regardless of whether `AppSignals` is true or false.
// However, if the customer has explicitly set the `OTEL_EXPORTER_OTLP_TRACES_ENDPOINT`,
// we will continue using the `otlp_exporter` to send OTel traces to the specified endpoint.
if (!hasCustomOtlpTraceEndpoint() && isLambdaEnvironment()) {
protocol = 'udp';
}
switch (protocol) {
case 'grpc':
return new OTLPGrpcTraceExporter();
case 'http/json':
return new OTLPHttpTraceExporter();
case 'http/protobuf':
if (otlp_exporter_traces_endpoint && isXrayOtlpEndpoint(otlp_exporter_traces_endpoint)) {
diag.debug('Detected XRay OTLP Traces endpoint. Switching exporter to OtlpAwsSpanExporter');
return new OTLPAwsSpanExporter(otlp_exporter_traces_endpoint);
}
return new OTLPProtoTraceExporter();
case 'udp':
diag.debug('Detected AWS Lambda environment and enabling UDPSpanExporter');
return new OTLPUdpSpanExporter(getXrayDaemonEndpoint(), FORMAT_OTEL_SAMPLED_TRACES_BINARY_PREFIX);
default:
diag.warn(`Unsupported OTLP traces protocol: ${protocol}. Using http/protobuf.`);
if (otlp_exporter_traces_endpoint && isXrayOtlpEndpoint(otlp_exporter_traces_endpoint)) {
diag.debug('Detected XRay OTLP Traces endpoint. Switching exporter to OtlpAwsSpanExporter');
return new OTLPAwsSpanExporter(otlp_exporter_traces_endpoint);
}
return new OTLPProtoTraceExporter();
}
}
static getOtlpProtocol(): string {
// eslint-disable-next-line @typescript-eslint/typedef
const parsedEnvValues = getEnvWithoutDefaults();
return (
parsedEnvValues.OTEL_EXPORTER_OTLP_TRACES_PROTOCOL ??
parsedEnvValues.OTEL_EXPORTER_OTLP_PROTOCOL ??
getEnv().OTEL_EXPORTER_OTLP_TRACES_PROTOCOL ??
getEnv().OTEL_EXPORTER_OTLP_PROTOCOL
);
}
private static configureJaeger() {
// The JaegerExporter does not support being required in bundled
// environments. By delaying the require statement to here, we only crash when
// the exporter is actually used in such an environment.
try {
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { JaegerExporter } = require('@opentelemetry/exporter-jaeger');
return new JaegerExporter();
} catch (e) {
throw new Error(
`Could not instantiate JaegerExporter. This could be due to the JaegerExporter's lack of support for bundling. If possible, use @opentelemetry/exporter-trace-otlp-proto instead. Original Error: ${e}`
);
}
}
protected static _registeredExporters: Map<string, () => SpanExporter> = new Map<string, () => SpanExporter>([
['otlp', () => this.configureOtlp()],
['zipkin', () => new ZipkinExporter()],
['jaeger', () => this.configureJaeger()],
['console', () => new ConsoleSpanExporter()],
]);
public constructor(resource: Resource) {
this.resource = resource;
// eslint-disable-next-line @typescript-eslint/typedef
let traceExportersList = this.filterBlanksAndNulls(Array.from(new Set(getEnv().OTEL_TRACES_EXPORTER.split(','))));
if (traceExportersList[0] === 'none') {
diag.warn('OTEL_TRACES_EXPORTER contains "none". SDK will not be initialized.');
} else if (traceExportersList.length === 0) {
diag.warn('OTEL_TRACES_EXPORTER is empty. Using default otlp exporter.');
traceExportersList = ['otlp'];
this.createExportersFromList(traceExportersList);
this._spanProcessors = this.configureSpanProcessors(this._configuredExporters);
} else {
if (traceExportersList.length > 1 && traceExportersList.includes('none')) {
diag.warn('OTEL_TRACES_EXPORTER contains "none" along with other exporters. Using default otlp exporter.');
traceExportersList = ['otlp'];
}
this.createExportersFromList(traceExportersList);
if (this._configuredExporters.length > 0) {
this._spanProcessors = this.configureSpanProcessors(this._configuredExporters);
} else {
diag.warn('Unable to set up trace exporter(s) due to invalid exporter and/or protocol values.');
}
}
}
private createExportersFromList(exporterList: string[]) {
exporterList.forEach(exporterName => {
// eslint-disable-next-line @typescript-eslint/typedef
const exporter = this._getSpanExporter(exporterName);
if (exporter) {
this._configuredExporters.push(exporter);
} else {
diag.warn(`Unrecognized OTEL_TRACES_EXPORTER value: ${exporterName}.`);
}
});
}
protected _getSpanExporter(name: string): SpanExporter | undefined {
return AwsSpanProcessorProvider._registeredExporters.get(name)?.();
}
private configureSpanProcessors(exporters: SpanExporter[]): (BatchSpanProcessor | SimpleSpanProcessor)[] {
return exporters.map(exporter => {
const configuredExporter: SpanExporter = AwsSpanProcessorProvider.customizeSpanExporter(exporter, this.resource);
if (exporter instanceof ConsoleSpanExporter) {
return new SimpleSpanProcessor(configuredExporter);
} else {
return new BatchSpanProcessor(configuredExporter, {
maxExportBatchSize: getSpanExportBatchSize(),
});
}
});
}
private filterBlanksAndNulls(list: string[]): string[] {
return list.map(item => item.trim()).filter(s => s !== 'null' && s !== '');
}
public static customizeSpanExporter(spanExporter: SpanExporter, resource: Resource): SpanExporter {
if (AwsOpentelemetryConfigurator.isApplicationSignalsEnabled()) {
return AwsMetricAttributesSpanExporterBuilder.create(spanExporter, resource).build();
}
return spanExporter;
}
public getSpanProcessors(): SpanProcessor[] {
return this._spanProcessors;
}
}
// END The OpenTelemetry Authors code
// The OpenTelemetry Authors code
//
// We need the logic to build the Sampler from user-defined Environment variables in order
// to wrap the Sampler with an AlwaysRecord sampler. However, this logic is not exported
// in an `index.ts` file, so the portion of code that does this is added here.
//
// TODO: Ideally, upstream's `buildSamplerFromEnv()` method should be exported
// https://github.com/open-telemetry/opentelemetry-js/blob/f047db9da20a7d4394169f812b2d255d934883f1/packages/opentelemetry-sdk-trace-base/src/config.ts#L62
//
// An alternative method is to instantiate a new OTel JS Tracer with an empty config, which
// would also have the (private+readonly) sampler from the `buildSamplerFromEnv()` method.
// https://github.com/open-telemetry/opentelemetry-js/blob/01cea7caeb130142cc017f77ea74834a35d0e8d6/packages/opentelemetry-sdk-trace-base/src/Tracer.ts#L36-L53
const FALLBACK_OTEL_TRACES_SAMPLER: string = TracesSamplerValues.AlwaysOn;
const DEFAULT_RATIO: number = 1;
/**
* Based on environment, builds a sampler, complies with specification.
* @param environment optional, by default uses getEnv(), but allows passing a value to reuse parsed environment
*/
export function buildSamplerFromEnv(environment: Required<ENVIRONMENT> = getEnv()): Sampler {
switch (environment.OTEL_TRACES_SAMPLER) {
case TracesSamplerValues.AlwaysOn:
return new AlwaysOnSampler();
case TracesSamplerValues.AlwaysOff:
return new AlwaysOffSampler();
case TracesSamplerValues.ParentBasedAlwaysOn:
return new ParentBasedSampler({
root: new AlwaysOnSampler(),
});
case TracesSamplerValues.ParentBasedAlwaysOff:
return new ParentBasedSampler({
root: new AlwaysOffSampler(),
});
case TracesSamplerValues.TraceIdRatio:
return new TraceIdRatioBasedSampler(getSamplerProbabilityFromEnv(environment));
case TracesSamplerValues.ParentBasedTraceIdRatio:
return new ParentBasedSampler({
root: new TraceIdRatioBasedSampler(getSamplerProbabilityFromEnv(environment)),
});
default:
diag.error(
`OTEL_TRACES_SAMPLER value "${environment.OTEL_TRACES_SAMPLER} invalid, defaulting to ${FALLBACK_OTEL_TRACES_SAMPLER}".`
);
return new AlwaysOnSampler();
}
}
function getSamplerProbabilityFromEnv(environment: Required<ENVIRONMENT>): number | undefined {
if (environment.OTEL_TRACES_SAMPLER_ARG === undefined || environment.OTEL_TRACES_SAMPLER_ARG === '') {
diag.error(`OTEL_TRACES_SAMPLER_ARG is blank, defaulting to ${DEFAULT_RATIO}.`);
return DEFAULT_RATIO;
}
// eslint-disable-next-line @typescript-eslint/typedef
const probability = Number(environment.OTEL_TRACES_SAMPLER_ARG);
if (isNaN(probability)) {
diag.error(
`OTEL_TRACES_SAMPLER_ARG=${environment.OTEL_TRACES_SAMPLER_ARG} was given, but it is invalid, defaulting to ${DEFAULT_RATIO}.`
);
return DEFAULT_RATIO;
}
if (probability < 0 || probability > 1) {
diag.error(
`OTEL_TRACES_SAMPLER_ARG=${environment.OTEL_TRACES_SAMPLER_ARG} was given, but it is out of range ([0..1]), defaulting to ${DEFAULT_RATIO}.`
);
return DEFAULT_RATIO;
}
return probability;
}
function getSpanExportBatchSize() {
if (isLambdaEnvironment()) {
return LAMBDA_SPAN_EXPORT_BATCH_SIZE;
}
return undefined;
}
export function isLambdaEnvironment() {
// detect if running in AWS Lambda environment
return process.env[AWS_LAMBDA_FUNCTION_NAME_CONFIG] !== undefined;
}
function hasCustomOtlpTraceEndpoint() {
return process.env['OTEL_EXPORTER_OTLP_TRACES_ENDPOINT'] !== undefined;
}
function getXrayDaemonEndpoint() {
return process.env[AWS_XRAY_DAEMON_ADDRESS_CONFIG];
}
function isXrayOtlpEndpoint(otlpEndpoint: string | undefined) {
return otlpEndpoint && new RegExp(XRAY_OTLP_ENDPOINT_PATTERN).test(otlpEndpoint.toLowerCase());
}
// END The OpenTelemetry Authors code