Reputation: 5203
I am extremely new to Grafana, I am using Grafana v4.1.1, influxdb 1.2 and have a range of charts showing my data :)
If I change my __interval from 1s to 100ms, nothing plots on the charts. I can hover over and it has values at ever one second though?
I have also added the table view and cannot get milliseconds to display (tried ss.sss, ms etc). I know the data has them as viewing the date as a string displays as below
Upvotes: 0
Views: 158
Reputation: 3942
That's because there are lots of null values in your serie.
Change fill(null)
to fill(none)
or set Display -> Stacking & null values -> Null value
to connected
then Grafana will connect the value you have and skip null values.
Upvotes: 1