Hello, I am running Grafana version 8.0.2 and I am trying to create a visualization of the time series for travel time between two points. That part is easy enough, but I want to overlay the travel time data from the day before to see the difference and I can’t seem to find a way to time offset one query within a panel.
Current query I have is:
SELECT mean("value") FROM "min" WHERE ("entity_id" = 'vail_travel_time') AND $timeFilter GROUP BY time($__interval) fill(null)
My end goal is to have one query showing travel time plotted for the day from the beginning of the day(00:00) through the end of the day (24:00). The other query plot should show the same timeframe but -24hrs.
I have been digging through the documentation HERE but not finding what I need. I like examples and lists of options and I am not finding them. Likely I am not looking in the right places for them though.
Any help would be appreciated.