Linux培训
达内IT学院
400-996-5531
1.找出网站访问流量最高的时刻及当时访问的PV
awk '{print $4}' access_log |cut -c 14-18|sort|uniq -c|sort -nr|head
2.简单统计整站PV,此方法存在误差
cat /usr/local/nginx/logs/access.log | wc -l
3.统计某个URL的PV
grep "/index.html" /var/log/nginx/access.log –c
4.统计某个URL的UV
grep "/index.html" /var/log/nginx/access.log | cut –d " " –f 4| sort | uniq | wc –l
5.查看整个网站的独立IP
cat /var/log/nginx/access.log | cut –d " " –f 1 | sort| uniq | wc -l
6.查看整个网站访问IP的top10
cat /var/log/nginx/access.log | cut –d " " –f 1 | sort| uniq -c | sort -rn | head -n 10
7.统计网站页面访问量top10
cat access.log | cut -d " " -f 7 | cut -d "?" -f 1 | sort | uniq -c | sort -rn | head -n 10
8.查看某一时刻的日志信息
cat access.log | awk '$4 >="[26/May/2015:00:00:50" && $4 <="[26/May/2015:05:00:00"'
填写下面表单即可预约申请免费试听! 怕学不会?助教全程陪读,随时解惑!担心就业?一地学习,可全国推荐就业!
Copyright © 京ICP备08000853号-56 京公网安备 11010802029508号 达内时代科技集团有限公司 版权所有
Tedu.cn All Rights Reserved