麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 網站 > WEB服務 > 正文

Apache自帶壓力測試工具ab使用方法

2023-06-10 12:43:00
字體:
來源:轉載
供稿:網友

軟件壓力測試是一種基本的質量保證行為,它是每個重要軟件測試工作的一部分。軟件壓力測試的基本思路很簡單:不是在常規條件下運行手動或自動測試,而是在計算機數量較少或系統資源匱乏的條件下運行測試。通常要進行軟件壓力測試的資源包括內部內存、CPU 可用性、磁盤空間和網絡帶寬。

因此,軟件壓力測試一個非常重要的環節,Apache自帶了一個稱為ab的壓力測試小工具,全稱為ApacheBench,是專門用于HTTP Server的benchmark testing,可以同時模擬多個并發請求。

在這個例子的一開始,我執行了這樣一個命令ab -n 10 -c 10 http://www.google.com/。這個命令的意思是啟動ab,向www.google.com發送10個請求(-n 10) ,并每次發送10個請求(-c 10)——也就是說一次都發過去了。跟著下面的是ab輸出的測試報告。

D:/apahce/bin>ab.exe -n 10 -c 10 http://www.google.com/
This is ApacheBench, Version 2.0.40-dev <$Revision: 1.146 $> apache-2.0
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Copyright 2006 The Apache Software Foundation, http://www.apache.org/
Benchmarking www.google.com (be patient).....done
Server Software: gws
Server Hostname: www.google.com
Server Port: 80
Document Path: /
Document Length: 4941 bytes
Concurrency Level: 10
Time taken for tests: 5.218750 seconds//**整個測試持續的時間**
Complete requests: 10//**完成的請求數量**
Failed requests: 9//**失敗的請求數量**
(Connect: 0, Length: 9, Exceptions: 0)
Write errors: 0
Total transferred: 52730 bytes**整個場景中的網絡傳輸量**
HTML transferred: 49540 bytes**整個場景中的HTML內容傳輸量**
Requests per second: 1.92 [#/sec] (mean) **大家最關心的指標之一,相當于LR中的每秒事務數,后面括號中的mean表示這是一個平均值**
Time per request: 5218.750 [ms] (mean) *大家最關心的指標之二,相當于LR中的平均事務響應時間,后面括號中的mean表示這是一個平均值**
Time per request: 521.875 [ms] (mean, across all concurrent requests)
Transfer rate: 9.77 [Kbytes/sec] received*平均每秒網絡上的流量,可以幫助排除是否存在網絡流量過大導致響應時間延長的問題**
Connection Times (ms)
min mean[+/-sd] median max
Connect: 187 488 257.6 437 921
Processing: 312 1673 1204.4 1547 3985
Waiting: 296 1668 1206.3 1546 3984
Total: 593 2162 1432.6 1890 4906

下面的內容為整個場景中所有請求的響應情況。在場景中每個請求都有一個響應時間,其中50%的用戶響應時間小于**毫秒,60%的用戶響應時間小于**毫秒,最大的響應時間小于 **毫秒**

Percentage of the requests served within a certain time (ms)
50% 1890
66% 2406
75% 3093
80% 3984
90% 4906
95% 4906
98% 4906
99% 4906
100% 4906 (longest request)

格式:

./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的數據的文件.

-T content-type Content-type header for POSTing  //POST數據所使用的Content-type頭信息。

-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. 'Apache=1234. (repeatable)   //-C cookie-name=value 對請求附加一個Cookie:行。 其典型形式是name=value的一個參數對。此參數可以重復。

-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認證需求代碼),此字符串都會被發送。

-X proxy:port Proxyserver and port number to use
-V Print version number and exit
-k Use HTTP KeepAlive feature
-d Do not show percentiles served table.
-S Do not show confidence estimators and warnings.
-g filename Output collected data to gnuplot format file.
-e filename Output CSV file with percentages served
-h Display usage information (this message)

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 久久久久9999 | www.guochan| 午夜av男人的天堂 | 九九热在线视频免费观看 | 国产在线一级视频 | 色综合久久久久综合99 | 免费色片 | www.99热视频 | 久久久精品视频免费看 | 久久亚洲春色中文字幕久久 | 日本黄色免费片 | 日韩精品网站在线观看 | 欧美三级欧美成人高清www | 国产精品99久久久久久大便 | 羞羞的视频 | 成人在线视频国产 | 视频一区二区三区视频 | 国产免费一区二区三区网站免费 | 一级黄色性感片 | 少妇一级淫片免费看 | 最新一区二区三区 | 国产一及毛片 | 亚洲天堂字幕 | 久久在草| 免费一级欧美大片视频 | 成人一级免费 | 毛毛片在线看 | 亚洲乱码精品久久久久 | 欧美一区二区三区久久精品视 | 91精选视频在线观看 | 精品国产96亚洲一区二区三区 | 欧美久久久一区二区三区 | 久久午夜国产 | 日韩视频www | 亚洲电影免费观看国语版 | 欧美999| 92精品国产自产在线 | 欧美亚洲国产成人综合在线 | 久久丝袜脚交足黄网站免费 | 日韩欧美激情视频 | 久久在现视频 |