siege压测工具安装及使用

siege 为压测开源软件. 网址:http://download.joedog.org/siege/ 挑选版本下载

siege安装

cd   /usr/local/src
wget http://download.joedog.org/siege/siege-4.0.9.tar.gz
tar -zxvf siege-4.0.9.tar.gz
cd siege-4.0.9/
./configure --prefix=/usr/local/siege
make && make install 

将命令加入全局

ln -s /usr/local/siege/bin/siege /usr/bin/siege

开始为期1分钟 200并发的请求百度

siege -c 200 -t 1 www.baidu.com

输出说明

  • Transactions : 总共测试次数
  • Availability : 成功次数百分比
  • Elapsed time : 总共耗时多少秒
  • Data transferred : 总共数据传输
  • Response time : 等到响应耗时
  • Transaction rate : 平均每秒处理请求数
  • Throughput : 吞吐率
  • Concurrency : 最高并发
  • Successful transactions : 成功的请求数
  • Failed transactions : 失败的请求数

麦志建博客
请先登录后发表评论
  • latest comments
  • 总共0条评论