influxDB and curl
Referred to this link and managed to insert 1 row into influxDB Insert line in InfluxDB using CURL
- Have ensured that my csv does not contain carriage returns
- Have ensured that there is a separate row for each data point/ measurement
Sample CSV: test A=0,B=0,C=0.02,D=0 test A=0,B=0,C=0.02,D=0
Curl command: curl -i -XPOST http://localhost:8086/write?db=mydb --data-binary @data3.csv
Any clues please? Thanks