码迷,mamicode.com
首页 > 数据库 > 详细

GoAccess 视图化access.log 日志

时间:2019-08-20 21:49:03      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:%s   视图   date   日期格   路径   一个   bin   socket   安装   

1.安装GoAccess 工具可以直接使用

apt-get install goaccess

2.使用goaccess命令将日志生成html文件

goaccess 日志路径 -o 输出HTML的路径 --real-time-html --time-format="%H:%M:%S" --date-format="%d/%b/%Y" --log-format=COMBINED

--real-time-html  表示实时的显示日志内容

--time-format    时间格式

--date-format    日期格式

--log-format      用于指定日志字符串格式

命令执行完后开启一个websocket服务用来实时更新日志数据

技术图片

3.为生成的html文件搭建一个web服务,例如使用nginx配置一个服务

server {
                listen       8080;
                server_name  localhost;
                access_log logs/proxy.access.log proxy;
                location /report.html{
                        alias /home/wwwroot/goaccess/report.html;
                }

        }  

然后访问 http://ip:8080 出现下图所示

技术图片

至此日志数据图形化完成,更多使用方式请访问官网

GoAccess中文网

 

GoAccess 视图化access.log 日志

标签:%s   视图   date   日期格   路径   一个   bin   socket   安装   

原文地址:https://www.cnblogs.com/itsuibi/p/11385719.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!