做者: 立地
郵箱: jarvin_g@126.com
QQ: 511363759html
wget http://blog.zyan.cc/soft/linux/webbench/webbench-1.5.tar.gz tar zxvf webbench-1.5.tar.gz cd webbench-1.5 make && make install
webbench -t 5 -c 2 http://google.com/ >2個併發用戶共同請求5秒
Benchmarking: GET http://google.com/ #GET方法請求谷歌
2 clients, running 5 sec. #2個用戶,運行5秒
Speed=4296 pages/min, 38664 bytes/sec. #4296個頁面每秒,38664 bytes每秒
Requests: 358 susceed, 0 failed. #358次請求成功,0次失敗
sudo apt-get install apache2-utils
ab -n 500 -c 2 http://www.google.com/ >2個併發用戶共同請求個數500個。
Server Software: gws #服務器信息
Server Hostname: www.google.com #測試地址
Server Port: 80 #測試端口
Document Path: / #測試文檔路徑
Document Length: 390 bytes #測試文檔大小
Concurrency Level: 2 #併發數量
Time taken for tests: 6.752 seconds #測試消耗時間
Complete requests: 500 #完成的請求數
Failed requests: 0 #失敗的請求數
Non-2xx responses: 500 #HTTP響應數據的頭信息中含有2XX之外的狀態碼的請求數
Total transferred: 566000 bytes #總傳輸數據大小
HTML transferred: 195000 bytes #總傳輸html數據大小
Requests per second: 74.05 [#/sec] (mean) #吞吐量,每秒處理平均請求數
Time per request: 27.007 [ms] (mean) #每一個請求平均等待時間
Time per request: 13.504 [ms] (mean, across all concurrent requests) #服務器每一個請求平均處理時間
Transfer rate: 81.86 [Kbytes/sec] received #平均每秒流量數
Connection Times (ms) #下面爲時間花費的分佈(鏈接、處理、等待、總數)
min mean[+/-sd] median max
Connect: 1 1 0.2 1 2
Processing: 22 26 7.6 25 150
Waiting: 22 26 7.6 25 150
Total: 23 27 7.6 26 151
###下面爲每一個請求花費時間的分佈
Percentage of the requests served within a certain time (ms)
50% 26 #50%在26毫秒以內
66% 27 #66%在27毫秒以內
75% 27
80% 27
90% 28 #主要看這個參數,90%在28毫秒以內
95% 29
98% 36
99% 52
100% 151 (longest request)
如想在請求header加入數據,以下:linux
ab -H "Cookie: key=value;key2=value2" ...
ab -c 1 -n 100 -T 'application/json' -p data.json http://www.google.com/
測試結果就不貼上來了,多了一個明顯的結果:web
Total body sent: 15900 #body總的發送量