shell 指令分析nginx 日誌qps

實時分析nginx

tail -f points.api.speiyou.cn.access.log|awk 'BEGIN{key="";cnt=0}{if(key==$5){cnt++}else{key=$5;print $5"--->"cnt;cnt=1}}'api

 

日誌文件分析緩存

zcat nginx_192.168.14.18_20181128-000004.tgz|awk '{print $5}'|uniq -c|sort -t ' ' -k1nr|head -n 100性能

 

sort 是將文件緩存吞在內存裏面的,每一個階段一個buffer,能夠經過 -s 指令進行階段性排序,取消最後排序,提向大文件性能,能夠經過屢次sort進行排序下降錯誤率。日誌

相關文章
相關標籤/搜索