-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The v2 version xray doesn't work for dynamodb putItem api #408
Comments
This panic is xray sdk creates a subsegment but cannot find available parent segment from context, it happens in asynchronous case for example:
So, probably your Alternatively, user can use ADOT, it is xray's long term strategy to move from xray sdk to ADOT. |
I am not running anything inside go routine, there should not be any async calls. |
In AWS Lambda scenario, X-Ray SDK will automatically find parent trace context from Lambda environment variable _X_AMZN_TRACE_ID, user no need call
|
I am deploying code to Lambda and use below code to instrument dynamodb requests. It works fine for
query
but doesn't work forputItem
.I got below error:
Is there any other configuration needed for
putItem
?The text was updated successfully, but these errors were encountered: