Hi,
Have any of you been able to import CSV data via the web UI in a similar format to what I have?
The data I am trying to import is in this simple format (I have only shown the beginning of the data here):
UTC_time,Supply_line,Return_line,Tap_water,Brine_out,Brine_in,Outdoor,Indoor,Desired_Supply_line,Compressor,Auxiliary_heater1,Hot_water,Auxiliary_Heater2,Desired_indoor_temp,
2023-01-01 00:00:09,,30,,,,,,,,,,,,
2023-01-01 00:03:19,30,,,,,,,,,,,,,
2023-01-01 00:12:34,,29,,11,12,,,,,,,,,
2023-01-01 00:13:50,,,,10,,,,,,,,,,
2023-01-01 00:14:30,33,,,6,11,,,,,,,,,
2023-01-01 00:15:48,34,,,,,,,,,,,,,
2023-01-01 00:16:26,35,,,,,,,,,,,,,
2023-01-01 00:17:44,36,,,,,,,,,,,,,
2023-01-01 00:18:59,37,,,,,,,,,,,,,
2023-01-01 00:20:49,38,,48,,,,,,,,,,,
2023-01-01 00:22:02,,30,47,,,,,,,,,,,
It starts with a timestamp and is followed by 13 fields (double or integer - yes, it’s mostly temperature).
Ideally this should be imported 1:1 into InfluxDB. Using annotations always gives errors. Otherwise, it is not clear to me how #group, #datatype and #default can describe the structure of the import or define where a given field belongs.
Or am I thinking in the wrong direction? Conversion to Line protocol is too time consuming, what is then left for me to import CVS into the database?
One more thing: InfluxDB (:latest) is running in Docker on a small ARM machine.
Thanks.