Quentin Del
Quentin Del

Reputation: 1685

Log all requests made to DynamoDB

I would like to debug an issue with DynamoDB. The provided expression refers to an attribute that does not exist in the item

For that I'd like to log all requests made to a DynamoDB Table from AWS (not from the lambda code). I have the RequestId in the error and I wish to be able to search for it to find the exact requests with its parameters.

I have looked into AWS Cloudtrail but it seems to only log Management Operations not all gets and all puts done to DynamoDB.

Thanks

Upvotes: 0

Views: 2487

Answers (1)

NoSQLKnowHow
NoSQLKnowHow

Reputation: 4855

You will need to add this level of data plane logging to your application as currently CloudTrail only supports logging of control plane operations for DynamoDB.

Upvotes: 2

Related Questions