- Which log formats are supported?
- Combined Log Format (default for Apache and Nginx) and Common Log Format. Custom formats need manual regex — the tool handles the ubiquitous defaults.
- What fields are extracted?
- IP, identity, auth user, timestamp, request method+path+protocol, status code, response size, referer, user agent. All as structured JSON fields.
- Does it handle multi-line entries?
- The standard Apache/Nginx formats are single-line. Multi-line error logs are a different format — use a dedicated error-log parser.
- Can I analyze the parsed output?
- Yes — copy the JSON and feed into `jq`, a log analysis tool, or a dashboard. The JSON is flat and easy to query.