Log File Summarizer
Turns a wall of log lines into level counts, a time span and the messages that repeat.
Loading the tool…
How to use this tool
- Load the log file, or paste the section you care about.
- Select Summarise the log.
- Read the level counts and the time span first — they tell you whether this is one incident or a bad day.
- Then work down the repeated messages. The one at the top with a large count is almost always the thing to fix.
What log file summarizer does
The useful thing about a log is almost never one line. It is that the same error appeared four hundred times in ninety seconds, or that everything before ten past nine was fine. Reading top to bottom finds neither, because every retry of one failure looks like a different message: the timestamps differ, the durations differ, the request identifiers differ, and grep counts them as four hundred distinct problems.
This page strips the variable parts out of each line — numbers, timestamps, UUIDs, IP addresses, hex values and quoted strings — and groups what is left, so those four hundred lines collapse into one row with a count of four hundred. Alongside that it reports the counts by level, the percentage of the file each level accounts for, and the first and last timestamps it recognised. It works on ISO 8601 and Apache-style stamps, and everything runs in your browser.