Grafana doesn't show milliseconds while influxdb shows milliseconds

Hi,

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?

Thanks in advance

1 Like

In the Influx datasource settings, maybe try changing the Min Time Interval to 1ms?

From here:

1 Like

Hi, thanks for your reply, but it didn’t change the way Grafana shows the date.

looks similar to this, @cper

maybe you should jump on that thread

1 Like

I had the same problem. Just using this time format had solved it:
YYYY-MM-DD hh:mm:ssS

Now it looks better:
image

Regards

2 Likes

Thanks, that was interesting, I tried it but it didn’t work either :frowning: