linux命令--根据接口日志TPS计算方法

cat  *.log |grep "information|request"|awk -F '|' '{print $1}'|sort -n| uniq -c > rpt_.txt

你可能感兴趣的:(linux命令--根据接口日志TPS计算方法)