Skip to content

Commit 445031b

Browse files
authored
use public ecr images (#95)
*Issue #, if available:* *Description of changes:* Replace the docker hub images with public ECR images. This commit also fix a lint error. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. *Issue #, if available:* *Description of changes:* By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
1 parent e879b2d commit 445031b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

aws-distro-opentelemetry-node-autoinstrumentation/src/aws-opentelemetry-configurator.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,10 @@ export class AwsOpentelemetryConfigurator {
257257
// Register BatchUnsampledSpanProcessor to export unsampled traces in Lambda
258258
// when Application Signals enabled
259259
if (isLambdaEnvironment() && !hasCustomOtlpTraceEndpoint()) {
260-
const udpSpanExporter = new OTLPUdpSpanExporter(getXrayDaemonEndpoint(), FORMAT_OTEL_UNSAMPLED_TRACES_BINARY_PREFIX);
260+
const udpSpanExporter = new OTLPUdpSpanExporter(
261+
getXrayDaemonEndpoint(),
262+
FORMAT_OTEL_UNSAMPLED_TRACES_BINARY_PREFIX
263+
);
261264
const configuredExporter = AwsMetricAttributesSpanExporterBuilder.create(udpSpanExporter, resource).build();
262265
spanProcessors.push(
263266
new AwsBatchUnsampledSpanProcessor(configuredExporter, {

0 commit comments

Comments
 (0)