we have a bucket in Influxdb (InfluxDB 2.0.7) that shows the date with milliseconds precision in raw data, and when we use the same query from Grafana (Grafana Server 8.0.6) the date shows only seconds precision.
In Influxdb:
02022-02-28T09:47:31.595Z INF
02022-02-28T09:47:31.598Z ERR
02022-02-28T09:47:31.851Z WAR
02022-02-28T09:47:31.856Z ERR
02022-02-28T09:47:31.861Z WAR
As you see, the timestamp we are querying is in fact in milliseconds precision.
While in Grafana we get:
2022-02-28 09:47:31 INF
2022-02-28 09:47:31 ERR
2022-02-28 09:47:31 WAR
2022-02-28 09:47:31 ERR
2022-02-28 09:47:31 WAR
How can we make Grafana show the date in milliseconds precision too?