I used simple jason plugin to bring in some timeseries data into Grafana.
I get the following response from server for Grafana request range of 2017-06-26 00:00:00 to 2017-06-26 23:59:59 :
However, there is no data shown and I have “Data points outside time range” error.
This is indicated to be due to timezone mismatch or missing time query in filter.
Have you tried milliseconds since epoch? For me (writing with the DataFrameClient - python) it did the trick. I got the same error message as long as I was using seconds since epoch. By adding the additional zeros everything turned the way I expected.
I think only these Formats are supported:
Hi. I have got similar problem. script a below:
select
extract(epoch from “date”) as time,
“action_description” as metric,
count(“subscriber”) as Subscriptions
FROM public.“VBI_KZ”
where
$__timeFilter(“date”)
and status = ‘FULFILLED’
group by “date”, “action_description”
order by “date”