AWS RDS SlowQuery logs

Here’s a great way to search /aws/rds/cluster slowquery logs in CloudWatch for entries with a high “row examined” count:

parse @message "*Rows_examined: *\n*" as full, rows
| display full, rows
| filter rows > 200000
| fields @timestamp, @message
| sort @timestamp desc
| limit 20

Change “200000” to whatever threshold for rows you want to specify.

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s