AWS Certified Developer Associate DVA-C02 Practice Question
Your application is generating logs at a high volume and you have been tasked with identifying occurrences of timeout errors that might be hidden within the vast amount of log data. You decide to use Amazon CloudWatch Logs Insights to parse these logs efficiently. Which of the following CloudWatch Logs Insights queries will accurately find log entries that contain the timeout error message 'TimeoutException', along with the timestamp and the requestId of the associated requests?
search 'TimeoutException' | fields @timestamp, requestId
filter @logStream = 'TimeoutException' | stats count() by requestId
fields @timestamp, requestId, @message | filter @message like /TimeoutException/
display @timestamp, requestId where @message = 'TimeoutException'