在linux中給你的應用作壓力測試

在linux中給你的應用作壓力測試

做者: 立地 
郵箱: jarvin_g@126.com 
QQ: 511363759html

一.webbench

 

1.在Ubuntu中安裝webbench —支持get,head等請求,但不支持post請求

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

2.測試demo

webbench -t 5 -c 2 http://google.com/   >2個併發用戶共同請求5秒

3.測試結果分析

  1. Benchmarking: GET http://google.com/ #GET方法請求谷歌
  2. 2 clients, running 5 sec. #2個用戶,運行5秒
  3. Speed=4296 pages/min, 38664 bytes/sec. #4296個頁面每秒,38664 bytes每秒
  4. Requests: 358 susceed, 0 failed. 358次請求成功,0次失敗

二.ab

1.在Ubuntu中安裝ab —支持 post ,get ,head 等方法

sudo apt-get install apache2-utils

2.測試demo

ab -n 500 -c 2  http://www.google.com/   >2個併發用戶共同請求個數500個。

3.測試結果分析

  1. Server Software: gws #服務器信息
  2. Server Hostname: www.google.com #測試地址
  3. Server Port: 80 #測試端口
  4. Document Path: / #測試文檔路徑
  5. Document Length: 390 bytes #測試文檔大小
  6. Concurrency Level: 2 #併發數量
  7. Time taken for tests: 6.752 seconds #測試消耗時間
  8. Complete requests: 500 #完成的請求數
  9. Failed requests: 0 #失敗的請求數
  10. Non-2xx responses: 500 HTTP響應數據的頭信息中含有2XX之外的狀態碼的請求數
  11. Total transferred: 566000 bytes #總傳輸數據大小
  12. HTML transferred: 195000 bytes #總傳輸html數據大小
  13. Requests per second: 74.05 [#/sec] (mean) #吞吐量,每秒處理平均請求數
  14. Time per request: 27.007 [ms] (mean) #每一個請求平均等待時間
  15. Time per request: 13.504 [ms] (mean, across all concurrent requests) #服務器每一個請求平均處理時間
  16. Transfer rate: 81.86 [Kbytes/sec] received #平均每秒流量數
  17. Connection Times (ms) #下面爲時間花費的分佈(鏈接、處理、等待、總數)
  18. min mean[+/-sd] median max
  19. Connect: 1 1 0.2 1 2
  20. Processing: 22 26 7.6 25 150
  21. Waiting: 22 26 7.6 25 150
  22. Total: 23 27 7.6 26 151
  23. ###下面爲每一個請求花費時間的分佈
  24. Percentage of the requests served within a certain time (ms)
  25. 50% 26 50%在26毫秒以內
  26. 66% 27 66%在27毫秒以內
  27. 75% 27
  28. 80% 27
  29. 90% 28 #主要看這個參數,90%在28毫秒以內
  30. 95% 29
  31. 98% 36
  32. 99% 52
  33. 100% 151 (longest request)

如想在請求header加入數據,以下:linux

  1. ab -H "Cookie: key=value;key2=value2" ...

4. 利用ab 進行post請求

  1. ab -c 1 -n 100 -T 'application/json' -p data.json http://www.google.com/

測試結果就不貼上來了,多了一個明顯的結果:web

  1. Total body sent: 15900 body總的發送量
相關文章
相關標籤/搜索