网站日志如何分析流量来源?访问统计与访客行为追踪
日志分析工具链
关键数据提取
工具 | 分析维度 | 部署方式 |
---|---|---|
GoAccess | 实时流量统计 | goaccess /path/to/access.log --log-format=COMBINED |
AWStats | 来源国家/IP | 需配置cron定时运行 |
ELK Stack | 深度行为分析 | 需单独服务器资源 |
bash
# 统计前10访问IP awk '{print $1}' access.log | sort | uniq -c | sort -nr | head -n 10 # 识别爬虫流量 grep -i 'bot' access.log | awk '{print $1,$12}'
更新时间:2025-06-22 12:11:56