细述:GoAccess实时日志监控

本文章基于Ubuntu16.04系统/Nginx1.10.3日志环境

注:Nginx使用apt-get方式安装,日志格式为默认

细述:GoAccess实时日志监控

源码安装
$ apt-get install gcc g++ libncursesw5-dev
$ wget http://tar.goaccess.io/goaccess-1.2.tar.gz
$ http://tar.goaccess.io/goaccess-1.2.tar.gz
$ tar -xzvf goaccess-1.2.tar.gz
$ cd goaccess-1.2/
$ ./configure --enable-utf8
$ make # make install
配置文件
vim ~/.goaccessrc
time-format %H:%M:%S
date-format %d/%b/%Y
log-format %h %^[%d:%t %^] "%r" %s %b "%R" "%u"
任务设置
$ goaccess -f /var/log/nginx/access.log -p ~/.goaccessrc -a -o /var/www/index.html --real-time-html --daemonize

然而,他喵的不知道是出了什么问题,–daemonize生效了,但是 –real-time-html无法实时刷新。。坑爹了。

最后改用 crontab
$ vim /etc/crontab

*  *    * * *   root    goaccess -a -d -f /var/log/nginx/access.log -p /root/.goaccessrc -o /var/www/index.html

相关的目录请自行替换,更详细的内容请自行参考官网https://goaccess.io/

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/117977.html

(0)
上一篇 2021年8月28日
下一篇 2021年8月28日

相关推荐

发表回复

登录后才能评论