GoAccess

Updated: 16 January 2022

A visual web log analyzer.

https://goaccess.io/

Connect to your webserver via ssh and pipe the access log to goaccess running locally. Create a report in html format.

ssh user@ \
'cat /var/log/apache2/example.com-le-ssl.conf/access.log' | \
goaccess -a -o /home/chris/report.html --log-format=COMBINED --html-report-title="example.com logs" -

Leave a comment