Nginx 使用 goaccess 分析日志

安装 Goaccess

1
sudo yum install access 

创建分析脚本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
# 日志路径
LOG_PATH=/tmp/logs
# 需要分析的APP
# PS 博客的日志为 blog.access.log 和 blog.error.log
# 则 APPS 中应该填入 blog
APPS=(blog gogs)
# 创建 静态文件生成的路径
STATIC_HMTL=/tmp/goaccess
mkdir -p $STATIC_HMTL
for(( i=0;i<${#APPS[@]};i++))
do
APP=${APPS[i]};
cat $LOG_PATH/$APP.access.log $LOG_PATH/$APP.error.log > $APP.log
goaccess -f $APP.log -o $STATIC_HMTL/$APP.html
rm $APP.log
done
# 合并所有日志
for(( i=0;i<${#APPS[@]};i++))
do
APP=${APPS[i]};
cat $LOG_PATH/$APP.access.log $LOG_PATH/$APP.error.log >> all.log
done
goaccess -f all.log -o $STATIC_HMTL/all.html
rm all.log

创建定时任务

1
2
# 每10分钟分析一次
*/10 * * * * "bash /tmp/start-goaccess.sh" > /dev/null