前言
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了東興免費建站歡迎大家使用!
我們經(jīng)常會用loadrunner來做性能測試,但有時候loadrunner沒法完成一些性能測試,這時候就需要其他工具了,今天就給大家介紹一個autobench。
簡介
autobench 是一款基于httperf的Perl腳本。它會在一次測試中調(diào)用多次httperf來對web服務(wù)器進(jìn)行測試,每次會按照給定的參數(shù)增加并發(fā)連接數(shù),將httperf的測試結(jié)果保存為CSV格式的文件,該文件可以被Excel直接讀取,方便生成測試報告。借助于autobench自帶的bench3graph工具可以生成漂亮的測試結(jié)果對比圖。
1、先安裝Httperf
下載:http://code.google.com/p/httperf/downloads/list
tar xvzf httperf-0.9.0.tar.gz
cd httperf-0.9.0
./configure
make && make install
2、安裝gnuplot
下載:http://www.gnuplot.info/download.html
tar xvzf gnuplot-4.2.0.tar.gz
cd gnuplot-4.2.0
./configure
make && make install
cp /usr/local/bin/bench3graph /usr/local/bin/bench3png
sed -i 's/postscript color/png xffffff/g' /usr/local/bin/bench3png
注意這里一定要打開:echo set data style linespoints >> gnuplot.cmd
3、安裝autobench
下載:http://www.xenoclast.org/autobench/downloads/autobench-2.1.2.tar.gz
tar xvzf autobench-2.1.2.tar.gz
cd autobench-2.1.2
make && make install
4、使用
4.1 測試單臺主機
./autobench \
--single_host \
--host1=your_ip \
--port1=80 \
--uri1=/home/www/MySQL_con.php \
--quiet \
--low_rate=5 \
--high_rate=100 \
--rate_step=5 \
--num_call=5 \
--num_conn=1000 \
--timeout=10 \
--file /tmp/con_results.tsv
4.2 測試多臺機器
./autobench \
--host1=your_ip1 \
--port1=80 \
--uri1=/home/www/mysql_con.php \
--host2=your_ip2 \
--port2=80 \
--uri2=/home/www/mysql_pcon.php \
--quiet \
--low_rate=5 \
--high_rate=100 \
--rate_step=5 \
--num_call=5 \
--num_conn=1000 \
--timeout=10 \
--file /tmp/results.tsv
4.3 參數(shù)含義
--signle_host 只測單機
--host1 測試主機地址
--uri1 host1 測試URI
--quiet 安靜模式
--low_rate 測試時最低請求數(shù)(指 httperf)
--hight_rate 測試時最高請求數(shù)
--rate_step 每次測試請求數(shù)增加步長
--num-call 同httperf
--num_conn 同httperf
--file 測試結(jié)果輸出的 tsv文件
4.4 生成圖片
bench3png results.tsv results.png
5、參考文章
http://www.xenoclast.org/autobench/
http://www.xenoclast.org/autobench/man/autobench.html#index
http://blog.chinaunix.net/uid-20587912-id-405065.html
http://hi.baidu.com/malele2008/blog/item/48d63e547a96cf4fd0090681.html
http://html.conclase.net/cp/scripts/mod_block_worms/bench.html
http://zbylovecool.blog.51cto.com/2515860/658593