Is it possible to write more than one point with the same timestamp into one measurement using InfluxDB. Problem is that i am saving data from loggers that have one timestamp and a measurements from many inverters for that timestamp and of course the points are getting owerwritten. How can i fix the problem?
The data is like:
time: 2016-08-09 12:10:08 inverter: 1 ...other fields
time: 2016-08-09 12:10:08 inverter: 2 ...other fields
time: 2016-08-09 12:10:08 inverter: 3 ...other fields
etc...
inverter
is a tag. If it is a field, then turninginverter
to tag should solve your problem. – Jagratiother fields
? And what is the1
,2
, and3
in the example you have above? – Michael Desa