我是靠谱客的博主 幽默天空,最近开发中收集的这篇文章主要介绍linux测试命令abab命令,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

  • ab命令
    • 常见参数说明
    • 结果说明

ab命令

ab----apache bench是apache下的一个工具,主要用于对web站点做压力测试,它可以测试安装Web服务器每秒种处理的HTTP请求

常见参数说明

参数说明
-n请求次数
-c每次的并发
-p发送POST请求时需要上传的文件,此外还必须设置-T参数
-TContent-Type请求头信息例如–application/x-www-form-urlencoded
-C添加cookid
-e输出结果信息到CSV格式的文件中

具体可查看

man  ab

结果说明

Server Software:        TornadoServer/5.0.2                          #软件
Server Hostname:        xxx.xxx.xx.xxx                               #IP地址
Server Port:            12345                                        #端口     

Document Path:          /parser                                      #路径
Document Length:        3190 bytes                                   # 页面的字节

Concurrency Level:      5                                            #当前并发
Time taken for tests:   3.158 seconds                                #测试耗时
Complete requests:      100                                          #总的请求次数
Failed requests:        0                                            #失败请求
Write errors:           0                                            #error信息
Total transferred:      333700 bytes                                 # 总共传输的数据量
Total POSTed:           36200                                        
HTML transferred:       319000 bytes                                 
Requests per second:    31.66 [#/sec] (mean)                         #每秒处理的请求数,等于100/3.158
Time per request:       157.911 [ms] (mean)                          #完成一个请求的平均时间,并发数量不止一个
Time per request:       31.582 [ms] (mean, across all concurrent requests)   #服务器平均处理时间,31.582*5=157.911
Transfer rate:          103.18 [Kbytes/sec] received                 #网络传输速度
                        11.19 kb/s sent
                        114.38 kb/s total

# 对  Time per request:       157.911的分析
Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        8    9   0.9      9      11
Processing:    44  146  22.8    146     260
Waiting:       44  145  22.7    145     260
Total:         52  155  22.8    154     268

#网络请求的分布情况
Percentage of the requests served within a certain time (ms)
  50%    154
  66%    161
  75%    165
  80%    168
  90%    174
  95%    178
  98%    238
  99%    268
 100%    268 (longest request)

参考文献:
1、https://blog.csdn.net/feiwutudou/article/details/80334099
2、https://blog.csdn.net/qq_27517377/article/details/78794409

最后

以上就是幽默天空为你收集整理的linux测试命令abab命令的全部内容,希望文章能够帮你解决linux测试命令abab命令所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部