ab是apache自帶的http壓力測試工具,全稱是apachebench
路徑為\apache\bin\ab.exe
引數文件:
例:ab -n 10 -c 10
其中-n代表請求數,-c代表併發數
結果如下 。。
d:\apache\bin>ab -n 10 -c 10
(以上是輸入的命令)
benchmarking 192.168.1.3 (be patient).....done
server software: apache/2.0.63
(目標伺服器apache版本號)
server hostname: 192.168.1.3
(目標伺服器主機頭名稱)
server port: 80
(目標伺服器apache埠)
document path: /index.html
(目標網頁相對位址)
document length: 292 bytes
(目標網頁大小)
concurrency level: 10
(併發執行緒數)
time taken for tests: 0.140625 seconds
(使用時間)
complete requests: 10
(成功的請求數量)
failed requests: 0
(失敗的請求數量)
write errors: 0
(發生錯誤數量)
total transferred: 5750 bytes
(全部使用的流量)
html transferred: 2920 bytes
(html檔案使用的流量)
requests per second: 71.11 [#/sec] (mean)
(指標一 平均每秒請求數)
time per request: 140.625 [ms] (mean)
(指標二 平均事務響應時間)
time per request: 14.063 [ms] (mean, across all concurrent requests)
(平均請求時間)
transfer rate: 35.56 [kbytes/sec] received
(傳輸速率)
connection times (ms) min mean[+/-sd] median max
connect: 0 0 0.0 0 0
processing: 109 124 16.3 140 140
waiting: 109 124 16.3 140 140
total: 109 124 16.3 140 140
(所有請求的響應情況)
percentage of the requests served within a certain time (ms)
50% 140
66% 140
75% 140
80% 140
90% 140
95% 140
98% 140
99% 140
100% 140 (longest request)
每個請求都有乙個響應時間 。。
比如 其中 50% 的使用者響應時間小於 140 毫秒 。。
最大的響應時間小於 140 毫秒 (100% 處) 。。
格式:ab [options] [http://]hostname[:port]/path
引數說明:
-n requests number of requests to perform
//在測試會話中所執行的請求個數(本次測試總共要訪問頁面的次數)。預設時,僅執行乙個請求。
-c concurrency number of multiple requests to make
//一次產生的請求個數(併發數)。預設是一次乙個。
-t timelimit seconds to max. wait for responses
//測試所進行的最大秒數。其內部隱含值是-n 50000。它可以使對伺服器的測試限制在乙個固定的總時間以內。預設時,沒有時間限制。
-p postfile file containing data to post
//包含了需要post的資料的檔案,檔案格式如「p1=1&p2=2」.使用方法是 -p 111.txt 。 (配合-t)
-v verbosity how much troubleshooting info to print
//設定顯示資訊的詳細程度 – 4或更大值會顯示頭資訊, 3或更大值可以顯示響應**(404, 200等), 2或更大值可以顯示警告和其他資訊。 -v 顯示版本號並退出。
-w print out results in html tables
//以html表的格式輸出結果。預設時,它是白色背景的兩列寬度的一張表。
-i use head instead of get
// 執行head請求,而不是get。
-x attributes string to insert as table attributes
-y attributes string to insert as tr attributes
-z attributes string to insert as td or th attributes
-c attribute add cookie, eg. -c 「c1=1234,c2=2,c3=3″ (repeatable)
//-c cookie-name=value 對請求附加乙個cookie:行。 其典型形式是name=value的乙個引數對。此引數可以重複,用逗號分割。
-c 」 c1=1234,c2=2,c3=3, jsessionid=ff056cd16da9d71cb131c1d56f0319f8″ 。
-h attribute add arbitrary header line, eg. 『accept-encoding: gzip』 inserted after all normal header lines. (repeatable)
-a attribute add basic www authentication, the attributes
are a colon separated username and password.
-p attribute add basic proxy authentication, the attributes
are a colon separated username and password.
//-p proxy-auth-username:password 對乙個中轉**提供basic認證信任。使用者名稱和密碼由乙個:隔開,並以base64編碼形式傳送。無論伺服器是否需要(即, 是否傳送了401認證需求**),此字串都會被傳送。
//-attributes 設定屬性的字串. 缺陷程式中有各種靜態宣告的固定長度的緩衝區。另外,對命令列引數、伺服器的響應頭和其他外部輸入的解析也很簡單,這可能會有不良後果。它沒有完整地實現 http/1.x; 僅接受某些』預想』的響應格式。 strstr(3)的頻繁使用可能會帶來效能問題,即你可能是在測試ab而不是伺服器的效能。
ab壓力測試工具
即ab的主要邏輯包含在test方法中。test方法首先進行了一些全域性的初始化工作。其中,最重要的乙個資料結構是陣列struct connection con c 代表同時存在的c個客戶端連線。struct connection的結構如下 struct connection start connec...
ab壓力測試工具
系統centos6.8 1 安裝ab 直接安裝好阿帕奇同時也安裝好了ab工具 不想安裝阿帕奇時可使用如下命令 2 ab命令引數解釋 n 在測試會話中所執行的請求個數。預設時,僅執行乙個請求。c 一次產生的請求個數。預設是一次乙個。t 測試所進行的最大秒數。其內部隱含值是 n 50000,它可以使對伺...
AB壓力測試工具
吞吐率 requests per second 概念 伺服器併發處理能力的量化描述,單位是reqs s,指的是某個併發使用者數下單位時間內處理的請求數。某個併發使用者數下單位時間內能處理的最大請求數,稱之為最大吞吐率。計算公式 總請求數 處理完成這些請求數所花費的時間,即 request per s...