Skip to content

Commit 5d8f186

Browse files
committed
Fix configuration naming
1 parent 10362b3 commit 5d8f186

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

awsagentprovider/src/main/java/software/amazon/opentelemetry/javaagent/providers/AwsApplicationSignalsCustomizerProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public class AwsApplicationSignalsCustomizerProvider
8080
private static final String APPLICATION_SIGNALS_ENABLED_CONFIG =
8181
"otel.aws.application.signals.enabled";
8282
private static final String APPLICATION_SIGNALS_RUNTIME_ENABLED_CONFIG =
83-
"otel.aws.app.signals.exporter.runtime.enabled";
83+
"otel.aws.application.signals.runtime.enabled";
8484
private static final String DEPRECATED_SMP_EXPORTER_ENDPOINT_CONFIG =
8585
"otel.aws.smp.exporter.endpoint";
8686
private static final String DEPRECATED_APP_SIGNALS_EXPORTER_ENDPOINT_CONFIG =

awsagentprovider/src/test/java/software/amazon/opentelemetry/javaagent/providers/AwsTracerConfigurerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ private AutoConfiguredOpenTelemetrySdkBuilder createSdkBuilder() {
4040
SimpleSpanProcessor.create(spanExporter));
4141
})
4242
.addPropertiesSupplier(
43-
() -> singletonMap("otel.aws.app.signals.exporter.runtime.enabled", "false"))
43+
() -> singletonMap("otel.aws.application.signals.runtime.enabled", "false"))
4444
.addPropertiesSupplier(() -> singletonMap("otel.metrics.exporter", "none"))
4545
.addPropertiesSupplier(() -> singletonMap("otel.traces.exporter", "none"))
4646
.addPropertiesSupplier(() -> singletonMap("otel.logs.exporter", "none"));

0 commit comments

Comments
 (0)