1. 程式人生 > >apache ab工具頁面壓力測試返回結果含義解釋

apache ab工具頁面壓力測試返回結果含義解釋

ab是apache自帶的一個很好用的壓力測試工具,當安裝完apache的時候,就可以在bin下面找到ab

引數說明及示例

我們可以模擬100個併發使用者,對一個頁面傳送1000個請求

其中-n代表請求數,-c代表併發數

返回結果:

##首先是apache的版本資訊 
This is ApacheBench, Version 2.3 <Revision:655654> 
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.xxx.xxx/ 
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking xxx.xxx.com (be patient)


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工具也算是一種ddos攻擊工具

http://www.jb51.net/article/68905.htm