最佳 Nginx 日志分析工具 GoAccess - Best Nginx log analyzer
非常小又精悍的 Nginx 日志分析工具 GoAccess,今天在 CentOS VPS 上安装测试了一番
就2个字,神器!
可以用 XShell 或 Putty 上去命令查看,也可以生成 html 报告,先看图
原文作者:21Andy.com
Operating Systems module/report
Browsers module/report. All reports are searchable
Hosts module/report - Reverse DNS & IP Geolocation
下面记录一下 GoAccess 在 CentOS 上的安装方法:
1. 需要安装 GeoIP, ncurses, glib2, 一句搞定
#yum -y install glib2 glib2-devel ncurses ncurses-devel GeoIP GeoIP-devel
2. 下载 GoAccess 解压编译安装
# tar zxvf goaccess-0.5.tar.gz
# cd goaccess-0.5
# ./configure --enable-geoip --enable-utf8
# make && make install
# make clean
3. 好了,试试装好没
看到以下结果就说明装好了
GoAccess - 0.5
Usage: goaccess [ -e IP_ADDRESS][ - a ][ - c ]< -f log_file >
The following options can also be supplied to the command:
-f
- Path to input log file.
-c - Prompt log/date configuration window.
-a - Enable a List of User-Agents by host.
For faster parsing, don't enable this flag.
-e- Exclude an IP from being counted under the
HOST module. Disabled by default.Examples can be found by running `man goaccess`.
For more details visit: http://goaccess.prosoftcorp.com
GoAccess Copyright (C) 2009-2012 GNU GPL'd, by Gerardo Orellana
原文作者:21Andy.com
4. GoAccess 使用方法
进入 Nginx 日志所在目录
命令行直接查看
也可以生成 HTML 报告
或
OK,去爽吧!
另外:GoAccess 是个日志分析工具,不单单是 Nginx 的日志,支持多种格式
原文地址:http://www.21andy.com/new/20130522/2150.html