最新消息: 新版网站上线了!!!

goaccess 分析nginx日志的方法

  #直接打开

  goaccess -f access.log

  #选择日志格式

  NCSA Combined Log Format

  #剩下的操作都蛮简单的,参考扩展阅读和官方文档吧

  #导出HTML报告会遇到的问题

  goaccess -f time_access.log -a > report.html

  GoAccess - version 0.9.2 - Jul 15 2015 16:23:20

  Config file: /usr/local/etc/goaccess.conf

  Fatal error has occurred

  Error occured at: src/parser.c - verify_formats - 1691

  No time format was found on your conf file.

  #添加配置文件

  vi ~/.goaccessrc

  time-format %T

  date-format %d/%b/%Y

  log-format %h %^[%d:%t %^] "%r" %s %b "%R" "%u"

  #重新指定配置文件后执行

  goaccess -f time_access.log -p ~/.goaccessrc -a > report.html

   定时任务 

 */2 * * * * /usr/bin/goaccess -f /logs/www.kuitao8.com.log -p ~/.goaccessrc -a > /root/2.html

  更多使用方法请看

 https://goaccess.io/faq

转载请注明:谷谷点程序 » goaccess 分析nginx日志的方法