Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save saswata-dutta/7b2a538ec2343ca83d6a08fe56774d81 to your computer and use it in GitHub Desktop.
Save saswata-dutta/7b2a538ec2343ca83d6a08fe56774d81 to your computer and use it in GitHub Desktop.
Find stats of cloudwatch lambda max mem used per day in logs insights
filter @type = "REPORT"
| fields @maxMemoryUsed/1000000 as MemUsedMb
| stats max(MemUsedMb) by bin(1d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment