Skip to content

Instantly share code, notes, and snippets.

@AMMullan
Last active August 22, 2023 16:43
Show Gist options
  • Save AMMullan/e738d3d2669357537afddebf2fbe4f2e to your computer and use it in GitHub Desktop.
Save AMMullan/e738d3d2669357537afddebf2fbe4f2e to your computer and use it in GitHub Desktop.
CloudWatch Logs Insights Queries
# Get number of emails sent by each IAM User broken down in hourly segments
stats count(*) by IAMUser, bin(1h) as period
| filter EventType in ["Delivery"]
| sort IAMUser desc, period desc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment