【发布时间】:2015-03-30 18:03:37
【问题描述】:
我有一个 shell 脚本,可以计算 tps、平均响应时间和响应时间的质量百分比。但我认为质量响应公式不正确,请建议如何以 95% 的百分位数计算响应时间的质量。
calculation () {
echo "starting calculation of the data in the files:"
if [ -f "/tmp/log/tps_access/access$today_date.log" ]
then
total_request=$( cat /tmp/log/tps_access/access$today_date.log | wc -l )
total_500E_request=$( cat /tmp/log/tps_access/access$today_date.log | awk -F"\"" '{ print $3}' | awk -F" " '{ print $1}' | grep "^5[0-9][0-9]$" | wc -l)
average_response_time=$( cat /tmp/log/tps_access/access$today_date.log | awk -F"\"" '{ print $9}' | awk '{sum+=$1; ++n} END { rounded = sprintf("%.2f", sum/n ); print rounded }')
percentile=$( cut /tmp/log/tps_access/access$today_date.log -d '"' -f9 |sort -n| awk 'BEGIN{c=0} {total[c]=$1; c++;} END{ rounded = sprintf("%.2f", total[int((NR*0.95)-1)] ); print rounded } ' )
head_time=$( head /tmp/log/tps_access/access$today_date.log | awk -F" " '{ print $4 }' | awk -F"[" '{ print $2 }' | awk -F"/" '{ print $1"-"$2"-"$3}' | awk -F":" '{ print $1" "$2":"$3":"$4}' | head -1 )
tail_time=$( tail /tmp/log/tps_access/access$today_date.log | awk -F" " '{ print $4 }' | awk -F"[" '{ print $2 }' | awk -F"/" '{ print $1"-"$2"-"$3}' | awk -F":" '{ print $1" "$2":"$3":"$4}' | tail -1 )
sec_old=$(date -d "$head_time" +%s)
sec_new=$(date -d "$tail_time" +%s)
DIFF=$(( (sec_new - sec_old) ))
tps=$(echo "scale=2; $total_request/$DIFF * 1" | bc )
request_servered_in_defined_sec=$( echo "scale=2; $total_request/$DIFF * $second" | bc )
sum=$(cat /tmp/log/tps_access/access$today_date.log | awk -F"\"" '{ print $9}' | awk '{sum+=$1; ++n} END { print sum }')
quality_per_sec=$( echo "scale=5; $sum/$total_request * $second" | bc )
quality_score=$( echo "scale=5; $quality_per_sec/$sum * 100" | bc )
if [ $total_500E_request -gt $threshold ]
then
echo "Count of 500 error request increases so sending mail to the team:"
send_mail error
else
echo "Writing all the stats in a file and wait for the next run:"
send_mail all
exit
fi
fi
}
【问题讨论】:
-
这不是正确的方法得到下面的正确方法
标签: linux apache shell httprequest