We made lambda application by serverless framework and activate X-Ray tracing.
This is our x-ray related settings on our serverless.yml
provider:
tracing:
apiGateway: true
lambda: true
My function calls DynamoDB, SQS, and other HTTP API.
But we can only trace Lambda Function’s actions even though this function calls DynamoDB, other HTTP API.
How do we set for tracing other services on serverless framework?