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

apache ab工具页面压力测试返回结果含义解释

程序员文章站 2023-08-21 21:07:50
ab是apache自带的一个很好用的压力测试工具,当安装完apache的时候,就可以在bin下面找到ab 参数说明及示例 我们可以模拟100个并发用户,对一个页面发送1...

ab是apache自带的一个很好用的压力测试工具,当安装完apache的时候,就可以在bin下面找到ab

参数说明及示例

我们可以模拟100个并发用户,对一个页面发送1000个请求

输入命令:ab -n1000 -c100

apache ab工具页面压力测试返回结果含义解释

其中-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攻击工具