亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

apache中ab壓力測試工具怎么用

發布時間:2021-11-22 09:38:26 來源:億速云 閱讀:178 作者:小新 欄目:編程語言

這篇文章主要介紹apache中ab壓力測試工具怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

一、腳本說明

該腳本支持ab大多常用參數,如果你需要更多參數,可以通過修改本腳本,加入你想要的即可。

該腳本支持:

1)、批量測試。注意,并不是簡單的批量測試,你可以定測測試輪數,間隔時間。
2)、階梯并發增長定制測試,如并發從100到1000,每輪測5次等。
3)、支持ab的post file模式,你只要在參數-P | --postfile中帶上你的數據文件即可。
4)、壓測完指標分析顯示,本shell可以將ab中常用的指示即時分析出來。

apache中ab壓力測試工具怎么用


二、腳本內容

#!/bin/bash
echo '*===================================================*'
echo '| 本腳本工具基于ab(Apache benchmark),請先安裝好ab, awk |'
echo '| 注意: |' 
echo '| shell默認最大客戶端數為1024 |'
echo '| 如超出此限制,請執行以下命令: |'
echo '| ulimit -n 655350 |'
echo '*===================================================*'
function usage() {
 echo ' 命令格式:'
 echo ' ab-test-tools.sh'
 echo ' -N|--count 總請求數,缺省 : 5w'
 echo ' -C|--clients 并發數, 缺省 : 100'
 echo ' -R|--rounds 測試次數, 缺省 : 10 次'
 echo ' -S|-sleeptime 間隔時間, 缺省 : 10 秒'
 echo ' -I|--min 最小并發數, 缺省: 0'
 echo ' -X|--max 最大并發數,缺省: 0'
 echo ' -J|--step 次遞增并發數'
 echo ' -T|--runtime 總體運行時間,設置此項時最大請求數為5w' 
 echo ' -P|--postfile post數據文件路徑'
 echo ' -U|--url 測試地址'
 echo ''
 echo ' 測試輸出結果*.out文件'
 exit;
}
# 定義默認參數量
# 總請求數
count=50000
# 并發數
clients=100O
# 測試輪數
rounds=10
# 間隔時間
sleeptime=10
# 最小并發數
min=0
# 最大數發數
max=0
# 并發遞增數
step=0
# 測試地址
url=''
# 測試限制時間
runtime=0
# 傳輸數據
postfile=''
ARGS=`getopt -a -o N:C:R:S:I:X:J:U:T:P:h -l count:,client:,round:,sleeptime:,min:,max:,step:,runtime:,postfile:,help -- "$@"`
[ $? -ne 0 ] && usage
eval set -- "${ARGS}" 
while true 
do
 case "$1" in
 -N|--count)
 count="$2"
 shift
 ;;
 
 -C|--client)
 clients="$2"
 shift
 ;;
 -R|--round)
 rounds="$2"
 shift
 ;;
 -S|--sleeptime)
 sleeptime="$2"
 shift
 ;;
 -I|--min)
 min="$2"
 shift
 ;;
 -X|--max)
 max="$2"
 shift
 ;;
 -J|--step)
 step="$2"
 shift
 ;;
 -U|--url)
 url="$2"
 shift
 ;;
 -T|--runtime)
 runtime="$2"
 shift
 ;;
 -P|--postfile)
 postfile="$2"
 shift
 ;;
 -h|--help)
 usage
 ;;
 --)
 shift
 break
 ;;
 esac
shift
done
# 參數檢查
if [ x$url = x ]
then
 echo '請輸入測試url,非文件/以為結束'
 exit
fi
flag=0
if [ $min != 0 -a $max != 0 ]
then 
 if [ $max -le $min ] 
 then
 echo '最大并發數不能小于最小并發數'
 exit
 fi
 if [ $step -le 0 ]
 then
 echo '并發遞增步長不能<=0'
 exit
 fi
 if [ $min -lt $max ]
 then
 flag=1
 fi
fi
# 生成ab命令串
cmd="ab -k -r"
# 數據文件
if [ x$postf != x ]
then
 cmd="$cmd -p $postf"
fi
if [ x$tl != x -a $tl != 0 ]
then 
 max=50000;
 cmd="$cmd -t$tl"
fi
cmd="$cmd -n$count"
echo '-----------------------------';
echo '測試參數';
echo " 總請求數:$count";
echo " 并發數:$clients";
echo " 重復次數:$rounds 次";
echo " 間隔時間:$sleeptime 秒";
echo " 測試地址:$url";
if [ $min != 0 ];then
echo " 最小并發數:$min";
fi
if [ $max != 0 ];then
echo " 最大并發數:$max";
fi
if [ $step != 0 ];then
echo " 每輪并發遞增:$step" 
fi
# 指定輸出文件名
datestr=`date +%Y%m%d%H%I%S`
outfile="$datestr.out";
# runtest $cmd $outfile $rounds $sleeptime
function runtest() {
 # 輸出命令
 echo "";
 echo ' 當前執行命令:'
 echo " $cmd"
 echo '------------------------------'
 # 開始執行測試
 cnt=1
 while [ $cnt -le $rounds ];
 do
 echo "第 $cnt 輪 開始"
 $cmd >> $outfile 
 echo "
" >> $outfile
 echo "第 $cnt 輪 結束"
 echo '----------------------------'
 cnt=$(($cnt+1))
 if [ $cnt -le $rounds ]; then
 echo "等待 $sleeptime 秒"
 sleep $sleeptime
 fi 
 done
}
temp=$cmd;
if [ $flag != 0 ]; then
 cur=$min
 over=0
 while [ $cur -le $max ]
 do
 cmd="$temp -c$cur $url"
 runtest $cmd $outfile $rounds $sleeptime 
 cur=$(($cur+$step))
 if [ $cur -ge $max -a $over != 1 ]; then
 cur=$max 
 over=1
 fi
 done
else 
 cmd="$cmd -c$clients $url"
 runtest $cmd $outfile $rounds $sleeptime 
fi
# 分析結果
if [ -f $outfile ]; then
echo '本次測試結果如下:'
echo '+------+----------+----------+---------------+---------------+---------------+--------------------+--------------------+'
echo '| 序號 | 總請求數 | 并發數 | 失敗請求數 | 每秒事務數 | 平均事務(ms) | 并發平均事務數(ms) |  總體傳輸字節數 |'
echo '+------+----------+----------+---------------+---------------+---------------+--------------------+--------------------+'
comp=(`awk '/Complete requests/{print $NF}' $outfile`) 
concur=(`awk '/Concurrency Level:/{print $NF}' $outfile`)
fail=(`awk '/Failed requests/{print $NF}' $outfile`)
qps=(`awk '/Requests per second/{print $4F}' $outfile`)
tpr=(`awk '/^Time per request:(.*)(mean)$/{print $4F}' $outfile`)
tpr_c=(`awk '/Time per request(.*)(mean, across all concurrent requests)/{print $4F}' $outfile`)
trate=(`awk '/Transfer rate/{print $3F}' $outfile`)
for ((i=0; i<${#comp[@]}; i++))
do
 echo -n "|"
 printf '%6s' $(($i+1)) 
 printf "|"
 printf '%10s' ${comp[i]}
 printf '|'
 
 printf '%10s' ${concur[i]}
 printf '|'
 printf '%15s' ${fail[i]}
 printf '|'
 printf '%15s' ${qps[i]}
 printf '|'
 printf '%15s' ${tpr[i]}
 printf '|'
 printf '%20s' ${tpr_c[i]}
 printf '|'
 printf '%20s' ${trate[i]}
 printf '|'
 echo '';
 echo '+-----+----------+----------+---------------+---------------+---------------+--------------------+--------------------+'
done
echo ''
fi

三、測試示例

sh ab-test-tool.sh -N 100000 -C 100 -R 2 -I 100 -X 500 -J 80 -S 5 -U 'http://...'

apache中ab壓力測試工具怎么用


四、ab信息說明

Server Software:    Apache/2.2.19  ##apache版本 
Server Hostname:    vm1.xxx.com  ##請求的機子 
Server Port:      80 ##請求端口

Document Path:     /xxx.html 
Document Length:    25 bytes ##頁面長度

Concurrency Level:   100 ##并發數 
Time taken for tests:  0.273 seconds ##共使用了多少時間 
Complete requests:   1000  ##請求數 
Failed requests:    0  ##失敗請求 
Write errors:      0  
Total transferred:   275000 bytes ##總共傳輸字節數,包含http的頭信息等 
HTML transferred:    25000 bytes ##html字節數,實際的頁面傳遞字節數 
Requests per second:  3661.60 [#/sec] (mean) ##每秒多少請求,這個是非常重要的參數數值,服務器的吞吐量 
Time per request:    27.310 [ms] (mean) ##用戶平均請求等待時間 
Time per request:    0.273 [ms] (mean, across all concurrent requests) ##服務器平均處理時間,也就是服務器吞吐量的倒數 
Transfer rate:     983.34 [Kbytes/sec] received ##每秒獲取的數據長度

Connection Times (ms) 
       min mean[+/-sd] median  max 
Connect:    0  1  2.3   0   16 
Processing:   6  25  3.2   25   32 
Waiting:    5  24  3.2   25   32 
Total:     6  25  4.0   25   48

Percentage of the requests served within a certain time (ms) 
 50%   25 ## 50%的請求在25ms內返回 
 66%   26 ## 60%的請求在26ms內返回 
 75%   26 
 80%   26 
 90%   27 
 95%   31 
 98%   38 
 99%   43 
100%   48 (longest request)

以上是“apache中ab壓力測試工具怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泰和县| 宜阳县| 屏东县| 枣阳市| 桦川县| 河北省| 长寿区| 肃宁县| 石河子市| 玉屏| 临湘市| 灌云县| 光山县| 洛川县| 黔西| 阜城县| 长葛市| 鹿泉市| 巴中市| 固始县| 德庆县| 团风县| 临海市| 健康| 乾安县| 桐城市| 安溪县| 渝北区| 寿光市| 禹城市| 太保市| 巴青县| 新郑市| 介休市| 惠水县| 宁津县| 抚远县| 化隆| 涿鹿县| 锦屏县| 定远县|