使用GoAccess分析Nginx的Virtual Host日誌記錄

背景

本身的機器上使用的Nginx,並配置了多個Virtual Host。如今須要經過GoAccess分析本身的訪問日誌。nginx

配置

GoAccess安裝

因爲是CentOS的主機,直接yum安裝:spa

yum install goaccess

若是你是其餘機器,能夠參考:https://goaccess.io/downloadrest

Nginx配置

默認的Nginxlog_format是不包含Virtual Host的信息的,能夠修改/etc/nginx/nginx.conf文件來統計相關信息:日誌

log_format vhosts '$host $remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
                      
    access_log  /var/log/nginx/access.log  vhosts;

配置好後,記得啓用新的配置:code

sudo service nginx restart

GoAccess配置

修改GoAccess的配置文件:/etc/goaccess.conf,激活以下配置:orm

time-format %H:%M:%S
date-format %d/%b/%Y
log-format %v %h %^[%d:%t %^] "%r" %s %b "%R" "%u" "%^"

使用

個人access.log文件在/var/log/nginx/access.log下,使用GoAccess統計:rem

sudo goaccess -f /var/log/nginx/access.log

效果以下:
GoAccess統計效果get

做者

郭一實 / http://sjz.ioit

相關文章
相關標籤/搜索