欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Apache AB性能测试工具使用教程

程序员文章站 2022-06-11 12:57:23
服务器负载太大而影响程序效率是很常见的,apache服务器自带有一个叫ab(apachebench)的工具,在bin目录下。ab专门用于http server的benchm...

服务器负载太大而影响程序效率是很常见的,apache服务器自带有一个叫ab(apachebench)的工具,在bin目录下。ab专门用于http server的benchmark testing,可以同时模拟多个并发请求,使用这个轻巧的工具我们可以对服务器进行负载测试。

今天在公司也用它作一些测试,现在整理了下它的一些东西分享下。

首先我们要得到apache服务器的目录下bin的路径,我电脑中的路径是d:\wamp\bin\apache\apache2.2.21\bin,打开cmd,转到这个目录下,在其中输入:ab -n 10 -c 10 //www.jb51.net/ 这条指令,这条指令的意思是:ab -n 全部请求数 -c 并发数 测试url。这里值得注意的是,如果你的测试url是一个网站的网址,请记得在其后加上/,否则会无法工作。

以下是我运行的结果:

复制代码 代码如下:

d:\wamp\bin\apache\apache2.2.21\bin>ab -n 10 -c 10 //www.jb51.net/

this is apachebench, version 2.3 <$revision: 655654 $>

copyright 1996 adam twiss, zeus technology ltd, http://www.zeustech.net/

licensed to the apache software foundation, http://www.apache.org/
benchmarking www.jb51.net (be patient)…..done

server software:        microsoft-iis/6.0  //microsoft-iis服务器版本6.0

server hostname:        www.jb51.net  //服务器主机名

server port:            80  //服务器端口
document path:          /  //测试的页面文档

document length:        32639 bytes  //文档大小
concurrency level:      10  //并发数

time taken for tests:   13.548 seconds  //整个测试持续的时间

complete requests:      10  //完成的请求数量

failed requests:        0  //失败的请求数量

write errors:           0

total transferred:      331070 bytes  //整个场景中的网络传输量

html transferred:       326390 bytes  //整个场景中的html内容传输量

requests per second:    0.74 [#/sec] (mean)  //每秒事务数 ,后面括号中的 mean 表示这是一个平均值

time per request:       13547.775 [ms] (mean)  //平均事务响应时间 ,后面括号中的 mean 表示这是一个平均值

time per request:       1354.777 [ms] (mean, across all concurrent requests)  //每个请求实际运行时间的平均值

transfer rate:          23.86 [kbytes/sec] received  //平均每秒网络上的流量,可以帮助排除是否存在网络流量过大导致响应时间延长的问题
connection times (ms)  //网络上消耗的时间的分解

              min  mean[+/-sd] median   max

connect:        1    2   0.8      2       3

processing:  2163 3981 3420.2   2957   13540

waiting:     1305 3204 3595.3   2096   13169

total:       2164 3983 3420.0   2959   13541

//以下是整个场景中所有请求的响应情况。在场景中每个请求都有一个响应时间,其中50%的用户响应时间小于2959毫秒,66% 的用户响应时间小于3074毫秒,最大的响应时间小于13541 毫秒。由于对于并发请求,cpu实际上并不是同时处理的,而是按照每个请求获得的时间片逐个轮转处理的,所以基本上第一个time per request时间约等于第二个time per request时间乘以并发请求数。

percentage of the requests served within a certain time (ms)

  50%   2959

  66%   3074

  75%   3974

  80%   4008

  90%  13541

  95%  13541

  98%  13541

  99%  13541

 100%  13541 (longest request)

下面是ab的指令中参数的介绍:

复制代码 代码如下:

-n requests     全部请求数

-c concurrency  并发数

-t timelimit    最传等待回应时间

-p postfile     post数据文件

-t content-type post content-type

-v verbosity    how much troubleshooting info to print

-w              print out results in html tables

-i              use head instead of 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    加入cookie, eg. ‘apache=1234. (repeatable)

-h attribute    加入http头, eg. ‘accept-encoding: gzip'

                inserted after all normal header lines. (repeatable)

-a attribute    http验证,分隔传递用户名及密码

-p attribute    add basic proxy authentication, the attributes

                are a colon separated username and password.

-x proxy:port   代理服务器

复制代码 代码如下:

-v              查看ab版本

-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)