`

Web压力测试ApacheBench(ab), Boom简介

 
阅读更多
boom:go语言压力测试工具 apache ab工具的代替品 http://hao.jobbole.com/boom/
Boom 是一个把负载加到web应用上的一款小工具,它类似于ab工具,但是在各个平台上都很好安装,Boom原来是 Tarek Ziade 使用phython实现的,你可以看一下 tarekziade/boom,我使用了Go语言重写了它。
安装 https://github.com/rakyll/boom
使用例子
Usage: boom [options...] <url>

Options:
  -n  Number of requests to run.
  -c  Number of requests to run concurrently. Total number of requests cannot
      be smaller than the concurency level.
  -q  Rate limit, in seconds (QPS).
  -o  Output type. If none provided, a summary is printed.
      "csv" is the only supported alternative. Dumps the response
      metrics in comma-seperated values format.

  -m  HTTP method, one of GET, POST, PUT, DELETE, HEAD, OPTIONS.
  -h  Custom HTTP headers, name1:value1;name2:value2.
  -d  HTTP request body.
  -T  Content-type, defaults to "text/html".
  -a  Basic authentication, username:password.

  -allow-insecure Allow bad/expired TLS/SSL certificates.
命令例子: boom http://localhost:80 -c 10 -n 100
下面是运行结果
% boom -n 1000 -c 100 https://google.com
1000 / 1000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎ 100.00 %

Summary:
  Total:        21.1307 secs.
  Slowest:      2.9959 secs.
  Fastest:      0.9868 secs.
  Average:      2.0827 secs.
  Requests/sec: 47.3246
  Speed index:  Hahahaha

Response time histogram:
  0.987 [1]     |
  1.188 [2]     |
  1.389 [3]     |
  1.590 [18]    |∎∎
  1.790 [85]    |∎∎∎∎∎∎∎∎∎∎∎
  1.991 [244]   |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  2.192 [284]   |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  2.393 [304]   |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  2.594 [50]    |∎∎∎∎∎∎
  2.795 [5]     |
  2.996 [4]     |

Latency distribution:
  10% in 1.7607 secs.
  25% in 1.9770 secs.
  50% in 2.0961 secs.
  75% in 2.2385 secs.
  90% in 2.3681 secs.
  95% in 2.4451 secs.
  99% in 2.5393 secs.

Status code distribution:
  [200] 1000 responses
github网址  https://github.com/rakyll/boom




ApacheBench(ab)使用简介http://phpanddb.blog.51cto.com/360884/127153
ApacheBench 主要是用来测试阿帕奇服务器执行效率用的。安装好 apache 服务器套件后,进入 bin 目录,就可以找到该可执行文件 ab.exe 。
         ApacheBench 可以针对某一特定 URL 模拟出连续的联机请求,同时还可以仿真出同时间点个数相同的联机请求,因而利用 ApacheBench 可帮助我们在网站开发期间仿真实际上线可能的情况,利用仿真出来的数据做为调整服务器设定或程序的依据。
ab 用法如下
Usage: ab [options] [http[s]://]hostname[:port]/path
Options are:
    -n requests     Number of requests to perform # 请求次数
    -c concurrency  Number of multiple requests to make #同一时间发出多少个请求(并行连接)
    -t timelimit    Seconds to max. wait for responses
    -p postfile     File containing data to POST
    -T content-type Content-type header for POSTing
    -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    Add cookie, eg. 'Apache=1234. (repeatable)
    -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.
    -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
    -s              Use httpS instead of HTTP (SSL)
    -h              Display usage information (this message)
基本用法 :
ab -n 全部请求数 -c 并发数 测试 url
例 :ab -n 1000 -c 50 http://www.abc.com/a.php
得到结果类似于 ( 后面颜色字为中文翻译 ):
Server Software:        Apache/2.0.55
Server Hostname:        localhost
Server Port:            80
Document Path:          /1.php
Document Length:        82522 bytes  # 请求文档大小
Concurrency Level:      50           # 并发数
Time taken for tests:   92.76140 seconds # 全部请求完成耗时
Complete requests:      10000          # 全部请求数
Failed requests:        1974           # 失败的请求
  (Connect: 0, Length: 1974, Exceptions: 0)
Write errors:           0
Total transferred:      827019400 bytes   # 总传输大小
HTML transferred:       825219400 bytes
Requests per second:    108.61 [#/sec] (mean)   # 每秒请求数 ( 平均 )
Time per request:       460.381 [ms] (mean)   # 每次并发请求时间 ( 所有并发 )
Time per request:       9.208 [ms] (mean, across all concurrent requests)   # 每一请求时间 ( 并发平均 )  
Transfer rate:          8771.39 [Kbytes/sec] received    # 传输速率
Connection Times (ms)    # 连接时间
             min  mean[+/-sd] median   max
Connect(# 连接 ):        0    0   2.1      0      46
Processing(# 处理 ):    31  458  94.7    438    1078
Waiting(# 等待 ):       15  437  87.5    422     938
Total:         31  458  94.7    438    1078
其它参数 :
-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)
分享到:
评论

相关推荐

    ApacheBench(压力测试)

    ApacheBench(压力测试).很好的教程 做好人了

    ApacheBench压力测试工具DYF

    ApacheBench压力测试工具,配合使用文档使用,凑字凑字凑字

    ApacheBench压力并发测试

    ApacheBench测试,ab.exe纯文件,省去配置apache麻烦。

    网页并发测试小工具ApacheBench

    ab 的全称是 ApacheBench , 是 Apache 附带的一个小工具 , 专门用于 HTTP Server 的 benchmark testing , 可以同时模拟多个并发请求。

    如何通过Apache Bench实现web压力测试

     ApacheBench 是 Apache 服务器自带的一个web压力测试工具,简称ab。ab又是一个命令行工具,对发起负载的本机要求很低,根据ab命令可以创建很多的并发访问线程,模拟多个访问者同时对某一URL地址进行访问,因此可以...

    ApacheBench阿帕奇自带的压力测试工具

    ApacheBench阿帕奇自带的压力测试工具

    Web性能压力测试工具之ApacheBench详解

    Apache中有个自带的,名为ab的程序,可以对Apache或其它类型的服务器进行网站访问压力测试。  ApacheBench命令原理:  ab命令会创建很多的并发访问线程,模拟多个访问者同时对某一URL地址进行访问。它的测试...

    apache-bench压力测试

    apache压力测试,下载压缩包后,直接解压到目录,使用简单方便快捷

    Windows下的ApacheBench

    Windows下的ApacheBench。网站压力测试神器。

    ApacheBench测试详解

    NULL 博文链接:https://sosuny.iteye.com/blog/588644

    Apache Bench

    ApacheBench 是 Apache 服务器自带的一个web压力测试工具,简称ab。ab又是一个命令行工具,对发起负载的本机要求很低,根据ab命令可以创建很多的并发访问线程,模拟多个访问者同时对某一URL地址进行访问,因此可以...

    性能测试ab(ApacheBench)的应用

    NULL 博文链接:https://fangpeng123456789.iteye.com/blog/1396798

    ApacheBench 64位

    apache2.2+centos6.4 64位环境下编译 用之前需要安装 apr和apr-util依赖包

    Web压力测试工具Boom.zip

    Boom 是一个用 Go 语言编写的 Web 压力测试小工具,类似 ApacheBench使用实例:% boom -n 1000 -c 100 https://google.com 1000 / 1000 ∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎...

    压力测试工具ab(Apache Bench)的使用

    但它除了可以对apache服务器进行压力测试之外,也可以对其它类似web server进行压力测试,比如nginx、tomcat、IIS等等。  linux系统下安装过apache httpd服务后可以直接使用ab测试工具了,否则,可以到其官网下载...

    window10本地电脑使用Apache Bench简称(ab)工具进行web端网站测试

    使用Apache Bench工具进行网站压力测试 下载我们需要的测试工具(ab)到你的电脑中apache bench工具下载地址 将下好的压缩包放在你的任意磁盘中,并解压出压缩包里的,我是解压缩到了D盘中 使用window10命令行工具...

    hey, HTTP负载生成器,ApacheBench ( ab ) 替换,以前称为 rakyll/boom.zip

    hey, HTTP负载生成器,ApacheBench ( ab ) 替换,以前称为 rakyll/boom 嘿,是一个小程序,向web应用程序发送一些负载。最初被称为 boom,受到Tarek工具的影响,在 tarekziade/boom 。 使用相同的名称是一个错误,...

Global site tag (gtag.js) - Google Analytics