goaccess實現可視化監控access.log日誌

安裝

可使用yum,也可使用rpm,或者是二進制包,這裏就不介紹了html

使用

cd /usr/local/nginx/logs
goaccess access.log -o ../html/report.html --real-time-html --time-format='%H:%M:%S' --date-format='%d/%b%Y' --log-format=COMBINED

配置一個重定向

將上面生成的文件重定向到一個連接中nginx

server{

   listen 8080;
   
   location /report.html {
        alias /usr/local/nginx/html/report.html;
   }
}

相關文章
相關標籤/搜索