influxdata / influxdb1-client

The old clientv2 for InfluxDB 1.x
MIT License
190 stars 112 forks source link

Writing own timestamp as tag to Influx #48

Open Gunakk opened 3 years ago

Gunakk commented 3 years ago

In Influx, if we want to write a timestamp of our own, we can write like this insert measure1 timestamp1=15678267593i,name="Victoria" and later fetch data based on the same, this works = *"select from measure1 where timestamp1=15678267593".** I do not understand how to enable the same with go influx client. I do not want to override time (using the Time field in Point structure).

Please let me know on how to enable the same or whether that functionality is supported in the existing influx go client or not.

Gunakk commented 3 years ago

Any Update on this?