参考
- 极客时间 Nginx核心知识100讲
- 官网 https://goaccess.io/ https://goaccess.cc/
- https://www.fanhaobai.com/2017/06/go-access.html
安装
参考文档
https://goaccess.io/download https://goaccess.io/get-started
ubuntu
sudo apt install goaccess
使用
终端试试显示
goaccess 日志文件路径 -c
生成静态页显示
goaccess 日志文件路径 -o 报告html页面路径 --log-format=COMBINED
实时静态页显示
goaccess 日志文件路径 -o 报告html页面路径 --log-format=COMBINED --real-time-html
nohup 启动
nohup goaccess 日志文件路径 -o 报告html页面路径 --log-format=COMBINED --real-time-html 输出日志文件 2>&1 &