You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this commit, we are removing RemoteTarget and replacing with RemoteResourceIdentifier and RemoteResourceType. Further, we are formatting RemoteService, and the content of the RemoteResource attributes such that they align with AWS Cloud Control resource names.
In addition to these changes, we are modifying the code and config names used for enabling and configuring Application Signals to use the full feature name, "application.signals"/"Application Signals".
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Copy file name to clipboardExpand all lines: appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/awssdk/base/AwsSdkBaseTest.java
Copy file name to clipboardExpand all lines: appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/awssdk/v1/AwsSdkV1Test.java
Copy file name to clipboardExpand all lines: appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/awssdk/v2/AwsSdkV2Test.java
Copy file name to clipboardExpand all lines: appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/base/ContractTestBase.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -78,11 +78,11 @@ public abstract class ContractTestBase {
Copy file name to clipboardExpand all lines: appsignals-tests/contract-tests/src/test/java/software/amazon/opentelemetry/appsignals/test/utils/AppSignalsConstants.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ public class AppSignalsConstants {
Copy file name to clipboardExpand all lines: awsagentprovider/src/main/java/software/amazon/opentelemetry/javaagent/providers/AwsApplicationSignalsCustomizerProvider.java
+55-28Lines changed: 55 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -52,54 +52,69 @@
52
52
* </ul>
53
53
*
54
54
* <p>You can control when these customizations are applied using the property
55
-
* otel.aws.app.signals.enabled or the environment variable OTEL_AWS_APP_SIGNALS_ENABLED. This flag
56
-
* is disabled by default.
55
+
* otel.aws.application.signals.enabled or the environment variable
56
+
* OTEL_AWS_APPLICATION_SIGNALS_ENABLED. This flag is disabled by default.
0 commit comments