3/4/2026 at 8:30:18 PM
I spend a lot of time auditing access logs and use grep a lot - will try thisby BorisMelnik
3/4/2026 at 8:33:28 PM
Awesome — thank you!Access logs were one of the main motivations (lots of repeated queries like IP/user-agent/path/status). If you try it, two tips:
1) Index once, then iterate on searches: qlog index './access*.log' qlog search 'status=403'
2) If you’re hunting patterns (e.g. suspicious UAs or a specific path), qlog really shines because it doesn’t have to rescan the whole file on each query.
If you run into anything weird with common log formats (nginx/apache variants), feel free to paste a few sample lines and I’ll make the parser more robust.
by cosm00