Skip to content

Instantly share code, notes, and snippets.

@heilgar
Created January 13, 2025 15:12
Show Gist options
  • Select an option

  • Save heilgar/0e1421c032cea6d362e54c0652c22cf3 to your computer and use it in GitHub Desktop.

Select an option

Save heilgar/0e1421c032cea6d362e54c0652c22cf3 to your computer and use it in GitHub Desktop.
AWS Logs Insights Query - Select error records
fields @timestamp, @message, @logStream, @log
| filter @message like /(?i)(error|exception|fail)/ and @message not like /hasErrorHandler/
| sort @timestamp desc
| limit 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment