InfluxDBStudio icon indicating copy to clipboard operation
InfluxDBStudio copied to clipboard

[Feature] Add option to see raw timestamps

Open wardboumans opened this issue 8 years ago • 3 comments

For debugging/troubleshooting its would be good to be able to see the raw timestamps in the result grid.

wardboumans avatar Jan 18 '17 07:01 wardboumans

Keep in mind this project is basically just a GUI wrapper on top of the functionality of InfluxData.Net, which parses and returns the response as a .NET DateTime. So by the time InfluxDB Studio gets it, it's already a .NET native type and whatever the underlying value was received directly from InfluxDB is inaccessible at this point in the response chain.

Are you wanting to see the DateTime as Ticks or converted into Unix epoch time? Those are possible, but it's not possible to easily return the raw response from InfluxDB itself since InfluxData.Net is handling that internally.

meverett avatar Oct 13 '17 23:10 meverett

@meverett maybe InfluxData.Net could also offer the raw data for timestamps as an option/feature?

aadrian avatar Oct 16 '17 10:10 aadrian

Sorry for the late reply. What I meant by raw, is having showing the nanosecond resolution like InfluxDB uses internally.

wardboumans avatar Nov 08 '17 18:11 wardboumans