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
This means that, as far as I can see, it's currently not possible to add X-Ray traces to AWS calls using the v2 SDK.
Current Behavior
I can't see an equivalent implementation in the v2 SDK anywhere - assuming it would use the new ExecutionInterceptor API - or if there is one, I can't see it documented in the developer guide.
Possible Solution
Add and document an implementation of ExecutionInterceptor that traces AWS client requests.
Steps to Reproduce (for bugs)
N/A
Context
Required for parity with the 1.11 SDK.
Your Environment
AWS Java SDK version used: 2.1.0
JDK version used: 8
The text was updated successfully, but these errors were encountered:
We are aware of the current issues and are actively working with the AWS SDK team to support X-Ray. We plan to have official support soon. Thank you for your patience, and stay tuned.
Expected Behavior
The AWS SDK team has now released version 2 of the Java SDK. Previously it was possible to write:
but the
RequestHandler
API has been replaced in v2 with a newExecutionInterceptor
API for wrapping client requests:https://github.com/aws/aws-sdk-java-v2/blob/master/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/ExecutionInterceptor.java
This means that, as far as I can see, it's currently not possible to add X-Ray traces to AWS calls using the v2 SDK.
Current Behavior
I can't see an equivalent implementation in the v2 SDK anywhere - assuming it would use the new
ExecutionInterceptor
API - or if there is one, I can't see it documented in the developer guide.Possible Solution
Add and document an implementation of
ExecutionInterceptor
that traces AWS client requests.Steps to Reproduce (for bugs)
N/A
Context
Required for parity with the 1.11 SDK.
Your Environment
The text was updated successfully, but these errors were encountered: