C:\Windows\system32>ab -n 100 -c 10 -w http://inner.x9water.com/fenxiao/index.html#/ >>d:\1.html
# 表示10并发的情况下,访问index.html脚本100次,并将测试结果保存到d:\1.html文件中
This is ApacheBench, Version 2.3 <$Revision: 1843412 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
# apache的版本信息
Benchmarking inner.x9water.com (be patient).....done
Server Software: nginx/1.13.4
# 服务器软件和版本
Server Hostname: inner.x9water.com
# 请求的地址/域名
Server Port: 80
# 端口
Document Path: /fenxiao/index.html#/
# 请求的路径
Document Length: 1363 bytes
# 页面数据/返回的数据量
Concurrency Level: 10
# 并发数
Time taken for tests: 3.102 seconds
# 共使用了多少时间
Complete requests: 100
# 请求数
Failed requests: 0
# 失败请求
Total transferred: 159700 bytes
# 总共传输字节数,包含HTTP的头信息等
HTML transferred: 136300 bytes
# HTML字节数,实际页面传递字节数
Requests per second: 32.23 [#/sec] (mean)
# 每秒多少请求,这个时非常重要的参数值,服务器的吞吐量,mean表示这是一个平均值
Time per request: 310.228 [ms] (mean)
# 用户平均请求等待时间,mean表示这是一个平均值
Time per request: 31.023 [ms] (mean, across all concurrent requests)
# 服务器平均处理时间,也就是服务器吞吐量的倒数,每个请求实际运行时间的平均值
Transfer rate: 50.27 [Kbytes/sec] received
# 每秒获取的数据长度(平均每秒网络上的流量,可以帮助排除是否存在网络流量过大导致响应时间延长的问题)
Connection Times (ms)
min mean[+/-sd] median max
Connect: 9 30 103.7 16 1044
# 连接的最小时间,平均值,中值,最大值
Processing: 12 269 297.4 168 1250
# 处理时间
Waiting: 10 221 282.4 135 1212
# 等待时间
Total: 34 299 311.4 190 1265
# 合计时间
Percentage of the requests served within a certain time (ms)
50% 190
## 50%的请求在190ms内返回
66% 224
## 60%的请求在224ms内返回
75% 261
80% 314
90% 1162
95% 1207
98% 1265
99% 1265
100% 1265 (longest request)
## 整个场景中所有请求的响应情况。在场景中每个请求都有一个响应时间,其中50%的用户响应时间小于190毫秒,60%的用户响应时间小于224毫秒,最大的响应时间小于1265毫秒。
## 由于对于并发请求,cpu实际上不是同时处理的,而是按照每个请求获得的时间片逐个轮转处理的,所以基本上第一个time per request时间约等于第二个time per request时间乘以并发请求数。