ab的全称是ApacheBench,是
Apache 附带的一个小工具,专门用于 HTTP Server 的benchmark testing,可以同时模拟多个并发请求。前段时间看到公司的开发人员也在用它作一些测试,看起来也不错,很简单,也很容易使用,所以今天花一点时间看了一下。
通过下面的一个简单的例子和注释,相信大家可以更容易理解这个工具的使用。
一个简单的例子
C:\Program Files\Apache Software Foundation\Apache2.2\bin>ab -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 1997-2005 The Apache Software Foundation, http://www.apache.org/
Benchmarking www.google.com (be patient).....done
Server Software: GWS/2.1
Server Hostname: www.google.com
Server Port: 80
Document Path: /
Document Length: 230 bytes
Concurrency Level: 10
/*整个测试持续的时间*/
Time taken for tests: 3.234651 seconds
/*完成的请求数量*/
Complete requests: 10
/*失败的请求数量*/
Failed requests: 0
Write errors: 0
Non-2xx responses: 10
Keep-Alive requests: 10
Total transferred: 6020 bytes
/*整个场景中的HTML内容传输量*/
HTML transferred: 2300 bytes
/*大家最关心的指标之一,相当于 LR 中的每秒事务数,后面括号中的 mean 表示这是一个平均值*/
Requests per second: 3.09 [#/sec] (mean)
/*大家最关心的指标之二,相当于 LR 中的平均事务响应时间,后面括号中的 mean 表示这是一个平均值*/
Time per request: 3234.651 [ms] (mean)
/*这个还不知道是什么意思,有知道的朋友请留言,谢谢 ^_^ */
Time per request: 323.465 [ms] (mean, across all concurrent requests)
/*平均每秒网络上的流量,可以帮助排除是否存在网络流量过大导致响应时间延长的问题*/
Transfer rate: 1.55 [Kbytes/sec] received
/*网络上消耗的时间的分解,各项数据的具体算法还不是很清楚*/
Connection Times (ms)
minmean[+/-sd] median max
Connect: 20318 926.1 30 2954
Processing: 40 2160 1462.0 3034 3154
Waiting: 40 2160 1462.0 3034 3154
Total: 60 2479 1276.4 3064 3184
/*下面的内容为整个场景中所有请求的响应情况。在场景中每个请求都有一个响应时间,其中 50%的用户响应时间小于 3064 毫秒,60 %的用户响应时间小于 3094 毫秒,最大的响应时间小于 3184 毫秒*/
Percentage of the requests served within a certain time (ms)
50% 3064
66% 3094
75% 3124
80% 3154
90% 3184
95% 3184
98% 3184
99% 3184
100% 3184 (longest request)
更多信息
ab 不像 LR 那么强大,但是它足够轻便,如果只是在开发过程中想检查一下某个模块的响应情况,或者做一些场景比较简单的测试,ab 还是一个不错的选择——至少不用花费很多时间去学习 LR 那些复杂的功能,就更别说那 License 的价格了。
下面是 ab 的详细参数解释,大家有兴趣的可以研究一下,最近没有足够多的时间研究,如果哪位朋友有兴趣希望可以帮忙翻译一下每个参数的含义,有问题讨论也欢迎在这里回帖 ^_^
ab [ -
Aauth-username:
password ] [ -
cconcurrency ] [ -
Ccookie-name=
value ] [ -
d ] [ -
ecsv-file ] [ -
ggnuplot-file ] [ -
h ] [ -
Hcustom-header ] [ -
i ] [ -
k ] [ -
nrequests ] [ -
pPOST-file ] [ -
Pproxy-auth-username:
password ] [ -
q ] [ -
s ] [ -
S ] [ -
ttimelimit ] [ -
Tcontent-type ] [ -
vverbosity] [ -
V ] [ -
w ] [ -
x<table>-attributes ] [ -
Xproxy[:
port] ] [ -
y<tr>-attributes ] [ -
z<td>-attributes ] [http://]
hostname[:
port]/
path
-A
auth-username:
password
Supply BASIC Authentication credentials to the server. The username and password are separated by a single :
and sent on the wire base64 encoded. The string is sent regardless of whether the server needs it (i.e., has sent an 401 authentication needed).
-c
concurrency
Number of multiple requests to perform at a time. Default is one request at a time.
-C
cookie-name=
value
Add a Cookie:
line to the request. The argument is typically in the form of a name=
value pair. This field is repeatable.
-d
Do not display the "percentage served within XX [ms] table". (legacy support).
-e
csv-file
Write a Comma separated value (CSV) file which contains for each percentage (from 1% to 100%) the time (in milliseconds) it took to serve that percentage of the requests. This is usually more useful than the 'gnuplot' file; as the results are already 'binned'.
-g
gnuplot-file
Write all measured values out as a 'gnuplot' or TSV (Tab separate values) file. This file can easily be imported into packages like Gnuplot, IDL, Mathematica, Igor or even Excel. The labels are on the first line of the file.
-h
Display usage information.
-H
custom-header
Append extra headers to the request. The argument is typically in the form of a valid header line, containing a colon-separated field-value pair (i.e., "Accept-Encoding: zip/zop;8bit"
).
-i
Do HEAD
requests instead of GET
.
-k
Enable the HTTP KeepAlive feature, i.e., perform multiple requests within one HTTP session. Default is no KeepAlive.
-n
requests
Number of requests to perform for the benchmarking session. The default is to just perform a single request which usually leads to non-representative benchmarking results.
-p
POST-file
File containing data to POST.
-P
proxy-auth-username:
password
Supply BASIC Authentication credentials to a proxy en-route. The username and password are separated by a single :
and sent on the wire base64 encoded. The string is sent regardless of whether the proxy needs it (i.e., has sent an 407 proxy authentication needed).
-q
When processing more than 150 requests, ab
outputs a progress count on stderr
every 10% or 100 requests or so. The -q
flag will suppress these messages.
-s
When compiled in (ab -h
will show you) use the SSL protected https
rather than the http
protocol. This feature is experimental and very rudimentary. You probably do not want to use it.
-S
Do not display the median and standard deviation values, nor display the warning/error messages when the average and median are more than one or two times the standard deviation apart. And default to the min/avg/max values. (legacy support).
-t
timelimit
分享到:
相关推荐
使用Apache ab工具进行压力测试的基本步骤: 1. 安装Apache HTTP服务器,如提供的`Apache24`文件,可能包含一个预编译的Apache版本。 2. 找到`ab`工具,通常位于Apache安装目录的`bin`子目录下。 3. 在命令行中运行...
Apache 压力测试工具ab是一个非常实用的性能测试工具,专门用于评估Apache HTTP服务器的性能。通过模拟多个并发用户发送请求,ab可以帮助管理员了解服务器在高负载下的表现,包括处理速度、吞吐量和资源利用率等关键...
测试工具 ab apache 性能测试 web开发 网站开发
AB工具全称为ApacheBench,它源自Apache HTTP服务器项目,主要用于模拟多个并发用户向服务器发送请求,并记录服务器的响应时间、吞吐量等关键性能指标。这有助于开发者和系统管理员了解在高负载情况下服务器的行为,...
总的来说,Apache的ab工具是一个高效、轻量级的压力测试工具,对于理解和优化Web服务性能,尤其是在接口和并发测试方面,提供了有力的支持。在实际工作中,我们需要根据测试需求,灵活运用ab的各项参数,以便获得更...
Apache Tomcat AB工具是Web服务器和应用程序服务器性能评估的重要组件,尤其在进行负载和压力测试时,它扮演了不可或缺的角色。这个小巧但功能强大的工具,允许开发者和系统管理员通过简单的命令行界面,对Web服务...
Apache AB测试程序是一款轻量级、命令行工具,主要用于评估Web服务器的性能。它由Apache HTTP服务器项目开发,是性能基准测试工具集的一部分。AB,全称ApacheBench,能够模拟多个并发用户对Web服务器进行请求,从而...
- 安装:在大多数Linux发行版中,ab工具通常已经预装在Apache包内。如果未安装,可以通过包管理器(如`apt-get`或`yum`)进行安装。 - 使用命令行:运行`ab`时,你需要提供URL作为参数,例如`ab -n 100 -c 10 ...
apache benchmark 独立文件 ab.exe 可以直接使用 Version 2.3。一般用户压力测试用。参数如下 .\ab.exe --help Options are: -n requests Number of requests to perform -c concurrency Number of multiple ...
AB工具包含在Apache HTTP Server的二进制分发包中,无需额外安装即可使用。 #### 三、基本使用方法 1. **定位AB工具位置**:首先,我们需要找到AB工具所在的目录。通常情况下,该工具位于Apache服务器的`bin`目录...
总的来说,Apache24加压版为用户提供了一种便捷的方式来快速搭建和测试Web服务器,而ab工具则帮助评估服务器的性能,确保其能满足应用的需求。通过深入理解和熟练运用这些知识点,可以更好地管理和维护Apache24...
Apache提供了多种压力测试工具,其中包括Apache JMeter、ab(ApacheBench)等,这些工具可以帮助开发者和运维人员理解服务器在高并发情况下的表现。 Apache JMeter是一款功能强大的开源压力和负载测试工具,不仅...
【Apache网站压力测试工具ab使用教程】 Apache HTTP服务器自带了一个名为`ab`(ApacheBench)的简单压力测试工具,用于评估Web服务器的性能。它能够模拟多个并发用户请求,以此来测试服务器在高负载下的响应时间和...
Apache AB工具是一款强大的性能测试工具,它用于评估Web服务器的性能和稳定性。这款工具随Apache HTTP服务器一起提供,可以帮助开发者和系统管理员理解服务器在高负载条件下的表现。AB工具能够模拟多个并发用户发送...
NULL 博文链接:https://2279972332.iteye.com/blog/1989163
- **ab (Apache Bench)**:性能基准测试工具,可以模拟多个并发用户对服务器进行压力测试。 - **httpd-tweak**:一些发行版提供的优化工具,用于调整服务器配置以提升性能。 4. **源码编译**:对于开发者,Apache...
apache的ab.exe服务器压力测试工具,用于对各种服务器压力测试