I need to add timestamp that increase, when write new point with stress tool on influxdb.
This able me to see grow rate of written data on Grafana.
Any idea?
Thanks,
@Indeed_1 We actually have three that would work ! I would suggest checking out this repo: GitHub - influxdata/influx-stress: New tool for generating artificial load on InfluxDB
Hey @Indeed_1 the tool should increase timestamps. Can you include the specific command that you’re running? This will help me figure out what the issue is.
sure , this is my code:
SET Addresses [ServerIP:Port]
SET SSL [false]
SET Username [user]
SET Password [pass]
SET Database [dbname]
SET Precision [s]
StartDate [2017-03-12]
SET BatchSize [1]
SET WriteInterval [0s]
SET QueryInterval [0s]
SET WriteConcurrency [5]
SET QueryConcurrency [5]
DROP DATABASE stress
WAIT
CREATE DATABASE dbname
WAIT
GO INSERT cpu
cpu value=[int rand(100) 0] 10000000 1s
WAIT
Currently I use this tool, but timestamp are same!
I want timestamp change during test!
That version of the stress tool has been deprecated.
We currently recommend using GitHub - influxdata/influx-stress: New tool for generating artificial load on InfluxDB
Is it possible to write random value for fields or tags with that version you mentioned?
Unfortunately no. Generating random numbers was a bottleneck for previous stress tools and it was removed as a result.
If it’s very important to you, you could open a feature request.
Hi,
Using Influx-stress, can we able to make the load through telegraf to influxDB??