Skip to content

Back to Toolbox

Goaccess recipes

Goaccess is a raw log server analyzer. I’ve installed it on macOS using brew install goaccess.

To generate useful website analytics, the incantation below:

goaccess mylogfile \
	-o report.html \
	--log-format=COMBINED \
	--ignore-crawlers \
	--unknowns-as-crawlers \
	--anonymize-ip \
	--anonymize-level=2 \
	--geoip-database=dbip-country-lite-2026-04.mmdb \
	--static-file=.webp \
	--static-file=.php \
	--all-static-files

The flags help as follows: