accesslog分析案例
假设pcaccess.log是某应用的accesslog
a.查看日志中访问次数最多的前10个IP
cat pcaccess.log|cut -d ‘ ‘ -f 1 |sort |uniq -c | sort -nr | awk ‘{print $0 }‘ | head -n 10 |less
b.查看日志中出现100次以上的IP
#cat pcaccess.log |cut -d ‘ ‘ -f 1 |sort |uniq -c | awk ‘{if ($1 > 100) print $0}‘|sort -nr |less
c.查看最近访问量最高的URL
假设第九个位置是url,则命令如下:
#cat pcaccess.log |tail -10000|awk ‘{print $9}‘|sort|uniq -c|sort -nr|less
左边的数字是出现的次数,右边的参数是对应的URL
d.查看最近访问量最高的页面(.jsp)
#cat pcaccess.log |awk ‘{print $9}‘|grep ‘.jsp‘|sort|uniq -c|sort -nr |head -n 10
e.查看日志中访问超过100次的页面
#cat pcaccess.log | cut -d ‘ ‘ -f 9| sort |uniq -c | awk ‘{if ($1 > 100) print $0}‘ | less
f.某天访问网站的独立IP有多少
#cat pcaccess.log|grep ‘17/Oct/2012‘|grep "******"|wc|awk ‘{print $1}‘|uniq
g.统计某类url,一天的访问次数
#cat pcaccess.log |grep ‘17/Oct/2012‘|awk ‘{print $9}‘|grep ‘/model.html‘|wc -l
h.列出传输时间超过 3 秒的文件
首先把请求时间和文件提取出来(假如倒数第四个域是请求时间)
#cat pcaccess.log|awk ‘{print $9 ,$(NF-4)}‘ >timeurl
找出传输时间超过3s的文件
#cat timeurl|awk ‘($NF > 3){print $1,$2}‘
找出传输时间超过3s的文件并且出现次数最多的前20个
#cat timeurl|awk ‘($NF > 3){print $1}‘|sort -n|uniq -c|sort -nr|head -20
i.列出传输最大的几个exe文件(分析下载站的时候常用)
#cat pcaccess.log |awk ‘($7~/\.exe/){print $14,$9}‘|sort -nr|head -20
j.统计404的连接
#awk ‘($12 ~/404/)‘ pcaccess.log | awk ‘{print $12,$9}‘ | sort|uniq -c|sort -nr
k.统计http status
#cat pcaccess.log |awk ‘{counts[$(12)]+=1}; END {for(code in counts) print code, counts[code]}‘
#cat pcaccess.log |awk ‘{print $12}‘|sort|uniq -c|sort -rn
本文出自 “安雅个人技术博客” 博客,请务必保留此出处http://zhouanya.blog.51cto.com/4944792/1370842
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。