shell分析nginx日志
Posted setevn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell分析nginx日志相关的知识,希望对你有一定的参考价值。
以下脚本都是基于上面日志格式的,如果你的日志格式不同需要调整awk后面的参数。
分析日志中的UserAgent
cat access_20130704.log | awk -F "\"" ‘{print $(NF-3)}‘ | sort | uniq -c | sort -nr | head -20
上面的脚本将分析出日志文件中最多的20个UserAgent
分析日志中那些IP访问最多
cat access_20130704.log | awk ‘{print $1}‘ | sort | uniq -c | sort -nr | head -20
分析日志中那些Url请求访问次数最多
cat access_20130704.log | awk -F "\"" ‘{print $(NF-5)}‘ | sort | uniq -c | sort -nr | head -20
以上是关于shell分析nginx日志的主要内容,如果未能解决你的问题,请参考以下文章