Hello, I want to enter temperature data where this data is in 1 csv file, I want to enter this data into 1 measurement called Temperature. How do I enter all the data in the csv file directly into the Temperature measurement? Thank you
@Ruben_Siregar the influx
CLI’s write
command supports writing CSV data, see the docs here.
Can we make timestamp as primary key in influxdb ? ,
I would say that timestamp is always the primary key (as far as keys apply
to a non-relational database) in InfluxDB.
InfluxDB is a Time Series Database - the timestamp is the one essential element
of every item in the database.
If you do not specify a tmestamp when you insert data into InfluxDB, it will
assume the timestamp “now”.
Antony.