基于 Go 语言的 HTTP 压测工具

Tony 197.65m2021-01-30874 次点击1 人感谢
GitHub:https://github.com/tsenart/vegeta
基于 Go 语言的 HTTP 压测工具。目前市面上的压测工具已经很多了,但是今天推荐的这款惊艳到我点是下面这条命令执行后的效果(vegeta+jaggr+jplot),让我们一起来感受下吧
```
echo 'GET http://localhost:8080' | \
vegeta attack -rate 5000 -duration 10m | vegeta encode | \
jaggr @count=rps \
hist\[100,200,300,400,500\]:code \
p25,p50,p95:latency \
sum:bytes_in \
sum:bytes_out | \
jplot rps+code.hist.100+code.hist.200+code.hist.300+code.hist.400+code.hist.500 \
latency.p95+latency.p50+latency.p25 \
bytes_in.sum+bytes_out.sum
```
![9ad34b9017e8145464bd8bc085273e22.gif](https://ppmm.org/images/2021/01/30/9ad34b9017e8145464bd8bc085273e22.gif)

[via](https://hellogithub.com/periodical/volume/58/)
收藏 ♥ 感谢
Spoony 小组长 2021-01-30 
这个动态图形效果很赞

登录注册 后可回复。