https://www.runoob.com/linux/linux-comm-awk.html awk命令手册
以分析nginx的access.log日志文件为例
1.分析网站QPS
cat access.log | awk \'{print $4}\' | uniq -c | sort -n
2.分析网站中ip请求次数
cat access.log | awk \'{print $1}\' | uniq -c | sort -n
https://www.runoob.com/linux/linux-comm-awk.html awk命令手册
以分析nginx的access.log日志文件为例
1.分析网站QPS
cat access.log | awk \'{print $4}\' | uniq -c | sort -n
2.分析网站中ip请求次数
cat access.log | awk \'{print $1}\' | uniq -c | sort -n
版权所有 © 2022 cinob的博客 | 辽ICP备17021658号-2
Theme Memory By Shawn With | All Rights Reserved
(●'◡'●)ノ本博客已萌萌哒运行了
评论
还没有任何评论,你来说两句吧!