We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d84b956 commit f89d088Copy full SHA for f89d088
aws-distro-opentelemetry-node-autoinstrumentation/src/aws-opentelemetry-configurator.ts
@@ -238,6 +238,11 @@ export class AwsOpentelemetryConfigurator {
238
}
239
240
spanProcessors.push(AttributePropagatingSpanProcessorBuilder.create().build());
241
+
242
+ if(isXrayOtlpEndpoint(process.env['OTEL_EXPORTER_OTLP_TRACES_ENDPOINT'])) {
243
+ return;
244
+ }
245
246
const applicationSignalsMetricExporter: PushMetricExporter =
247
ApplicationSignalsExporterProvider.Instance.createExporter();
248
const periodicExportingMetricReader: PeriodicExportingMetricReader = new PeriodicExportingMetricReader({
0 commit comments