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?
fields @timestamp, requestId, @message | filter @message like /TimeoutException/
filter @logStream = 'TimeoutException' | stats count() by requestId
search 'TimeoutException' | fields @timestamp, requestId
display @timestamp, requestId where @message = 'TimeoutException'