https://devtools.solutions/tools/logs/apache-log-parse.html

Parse Apache Logs

Parse Apache Combined Log Format entries and display each field in a structured table.


    

Example input/output

Input: 127.0.0.1 - frank [10/Oct/2000:13:55:36 -0700] "GET /apache_pb.gif HTTP/1.0" 200 2326

Output: IP: 127.0.0.1 / User: frank / Time: 10/Oct/2000:13:55:36 -0700 / Request: GET /apache_pb.gif HTTP/1.0 / Status: 200 / Bytes: 2326

How it works

This tool applies a regular expression matching the Apache Combined Log Format to each log line and extracts the IP address, ident, auth user, timestamp, request line, status code, and response size. Processing runs in your browser.

Common use cases

Related tools