CymaticLabs / InfluxDBStudio

InfluxDB Studio is a UI management tool for the InfluxDB time series database.
MIT License
887 stars 187 forks source link

[Feature] Add option to see raw timestamps #1

Open wardboumans opened 7 years ago

wardboumans commented 7 years ago

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

meverett commented 6 years ago

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.

aadrian commented 6 years ago

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

wardboumans commented 6 years ago

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