I am using Influxdb to store time series data but when I want to store 1000 point in the loop of 200ms than it going to fail.
There are only around 200 point which is store in influxdb.
Not 100 % sure but I am missing any configuration parameter.
Please help me!
@wr0ng.way What percision are your timestamps? time
is the primary key in influxdb
so if any of your points have the same timestamp then the values are over-ridden. Setting high precision, ns
, timestamps on the client side might help fix this problem.
That link also shows the proper way to set the precision=ns
parameter.