influxDB性能测试工具 influx-stress安装使用

influxdata提供的测试工具,influx-stress用于写入压力测试,

安装使用步骤:

1.GO运行环境

详见另一篇博客: https://blog.csdn.net/rclijia/article/details/94390242

2.Influx-stress安装

运行命令: 

go get -v github.com/influxdata/influx-stress/cmd/...

然后进入本机$GOPATH/src/github.com/influxdata 目录,

clone  influx-stress项目, 运行命令: 

git clone https://github.com/influxdata/influx-stress.git 

然后就可以运行测试工具了,执行命令:

go run cmd/influx-stress/main.go  insert cpu,host=server,location=us-west,id=myid busy=100,idle=10,random=5i -r 30s

等待执行结束后,可以查看测试结果报告。

你可能感兴趣的:(influxDB,influx-stress,性能测试)