博客
关于我
开源压力测试的小工具Apache 下的ab
阅读量:115 次
发布时间:2019-02-26

本文共 1196 字,大约阅读时间需要 3 分钟。

LoadRunner虽然不是开源工具,但安装Apache服务器后,我们可以使用其内置的开源压力测试工具ab进行性能测试。以下是使用ab进行测试的简单示例和结果分析:

ab -n 10 -c 10 http://www.google.com/

该命令会发送10个请求,并且每次发送10个请求。

Benchmarking (be patient).....done

Server Software: GWS/2.1

Server Hostname:

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 transferred: 2300 bytes

Requests per second: 3.09 [#/sec] (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)

Connect: 20 318 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

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)

注解:

- Apache的bin目录下运行。

格式: ab [options] [http://]hostname[:port]/path

-n requests: 测试的请求数量,默认为1

-c concurrency: 并发请求数量,默认为1

-t timelimit: 最大等待时间,默认为无限制

-w: 以HTML表格形式输出结果

其他选项可参考官方文档。

转载地址:http://czjf.baihongyu.com/

你可能感兴趣的文章
Python听写汇总结果
查看>>
python吊打Excel?屁!那是你不会用!
查看>>
Python合并两张图片 | 先叠透明度再合并 (附Demo)
查看>>
python各进制的表述与转换
查看>>
python各种库安装
查看>>
python可视化matplotlib_如何使用Python中最强大的可视化工具Matplotlib?
查看>>
python可维护性_使用这7大神器,让你的Python 代码更容易于维护
查看>>
Python只运行一次while循环
查看>>
python变量的详细教程_Python零基础入门教程之语法入门[变量](第二期)
查看>>
Python变量命名方法-ChatGPT4o作答
查看>>
Python变量与运算符
查看>>
Python变量/运算符/函数/模块/string
查看>>
python发送邮件的时候出现 error (535, b‘5.7.3 Authentication unsuccessful‘) 解决方法
查看>>
python系列【仅供参考】:python flask框架 debug功能
查看>>
python发送notes邮件_使用python在Lotus Notes中发送邮件
查看>>
Python双版本下创建一个Scrapy(西瓜皮)项目
查看>>
Python双版本下No module named 'requests'
查看>>
python及pycharm2018软件安装教程
查看>>
python去重txt文本_Python实现的txt文件去重功能示例
查看>>
python去掉列表的逗号,从Python列表项中删除标点符号
查看>>