Hello!
I am migrating a dashboard from simplejson datasource to infinity data source and one of our tables keeps showing the message “Data outside time range”
I have noticed some weird interactions with this.
-
This is a timeseries using a set time span (usually past 14 days) past 7 days works fine
it breaks past 8 days.
-
Any data subset ( using the legend on the right) does not show the “Data outside time range” message
-
When I try to “Zoom to Data” the graph takes me to an impossible time range with the from after the to date
- The actual data being shown behind the message is correct and exactly what I would expect!
-
What Grafana version and what operating system are you using?
version 11.3.0, windows, microsoft edge -
Can you copy/paste the configuration(s) that you are having problems with?
I am recieving data in a format that looks like this:
"data": [
{
"metric": "RS",
"time": 1738450800000,
"value": 9
},
{
"metric": "AT",
"time": 1737586800000,
"value": 8557
},
{
"metric": "AT",
"time": 1737673200000,
"value": 119924
},
{
"metric": "AT",
"time": 1737759600000,
"value": 4089
}
]
I am using a short UQL query to get the data to show in the time series:
parse-json
| pivot sum("value"), "time", "metric"
The table view does not show any irregularities
The effects are the same whether or not I use query options to set the time span or use the dropdown at the top to set it
-
Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.
The “Data outside time range message” and this console error which I am unsure is related as it does not appear when refreshing the data
-
Did you follow any online instructions? If so, what is the URL?
no
Honestly if there was a way to just disable the message pop up I would do that, but if there is a configuration or query error that would interest me as well.
Thank you for reading this post!