Skip to content

Instantly share code, notes, and snippets.

View perfmind's full-sized avatar

Moh. Sulton Hasanuddin perfmind

  • Jakarta, Indonesia
View GitHub Profile
@perfmind
perfmind / cloudwatch_log_insights_mysql_slow_query_examples.md
Last active December 25, 2021 22:44 — forked from grocky/cloudwatch_log_insights_mysql_slow_query_examples.md
CloudWatch Log Insights query examples for MySQL slow query log.

Filtering queries

Find slowest write queries

parse @message /Query_time: (?<queryTime>.*?) Lock_time: (?<lockTime>.*?) Rows_sent: (?<rowsSent>.*?) Rows_examined: (?<rowsExamined>.*?)\s(?<query>.*?)$/
  | filter @message like /(?i)insert/
  | sort queryTime desc
  | limit 10