Example 1 — Full-scan hunt. A query reports 5,000 rows examined to return only 10 rows sent — the classic missing-index signature, where the database reads far more data than it returns; it lands at the top of the rows-examined ranking even if its execution time looks unremarkable.
Example 2 — Lock contention. High lock times cluster under one user; the per-user section surfaces the account whose queries are holding locks longest, which is often the first lead in diagnosing a blocked-transaction incident.
Example 3 — Mixed formats. Old classic-format entries (no # Time: header, common in older MySQL versions or hand-trimmed excerpts) and newer timestamped entries paste together and parse cleanly in the same run, so you don't need to normalize the file first.
Example 4 — Sanity-checking coverage. If the query count in the overview looks lower than expected, check the unparsed blocks list — it shows the start of any block that didn't match the expected header/metric structure, which usually means truncated input or a non-standard log_output setting.