Hi,
I am able to upload the csv data into Influxdb with the date format as ‘2023-07-18T04:13:40Z’. But is there other method to load the csv data with date like ‘2023-07-18 04:13:40’ into influx db
Hello @AVVS_Sudheer ,
Yes you can use telegraf
# CSV Parser Plugin
The `csv` parser creates metrics from a document containing comma separated
values.
## Configuration
```toml
[[inputs.file]]
files = ["example"]
## Data format to consume.
## Each data format has its own unique set of configuration options, read
## more about them here:
## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_INPUT.md
data_format = "csv"
## Indicates how many rows to treat as a header. By default, the parser assumes
## there is no header and will parse the first row as data. If set to anything more
## than 1, column names will be concatenated with the name listed in the next header row.
This file has been truncated. show original
See the csv_timestamp_format option