nginx日志文件back.log
正序排列:
cat back.log | awk '{print $4}' | uniq -c | sort -n
倒叙排列:
cat back.log | awk '{print $4}' | uniq -c | sort -r
查看某个接口:(/api/sendCode接口名)
cat back.log | grep "/api/sendCode" | awk '{print $4}' | uniq -c | sort -r
nginx日志文件back.log
正序排列:
cat back.log | awk '{print $4}' | uniq -c | sort -n
倒叙排列:
cat back.log | awk '{print $4}' | uniq -c | sort -r
查看某个接口:(/api/sendCode接口名)
cat back.log | grep "/api/sendCode" | awk '{print $4}' | uniq -c | sort -r
本文标题:根据日志来分析当前qps高点和低点 --- 2021-10-14
本文链接:https://www.haomeiwen.com/subject/ynwuoltx.html
网友评论