Open
Description
I'm using GoAccess to analyze the access.log from my Nginx server.
It would be great if the HTTP status code graph included timestamps, so I could identify individual log entries more easily.
My goal is to use GoAccess to help detect potential errors in my application. That's why having a more detailed graph—with timestamps—would be really helpful for pinpointing specific requests.
My Actual .bat file to execute goaccess:
@echo off
C:\IT-Software\msys2\usr\bin\bash -lc "goaccess /c/IT-Software/nginx/logs/access.log -o /c/IT-Software/nginx/html/report.html --log-format=COMBINED --real-time-html"
pause