Grafana v11.4.0 (b58701869e) on Raspberry Debian.
InfluxDB, SQLLite DB.
I have a dashboard with a couple of gauges, time series and barcharts.
All relate to the selected timeframe which works fine.
I gather PV forecast data which is future looking (2 days ahead of “now”).
I want one single time series panel to always show the time range “now” → “now+2d”.
my Query currently delivers all data in the PV forecast table:
SELECT UNIXEPOCH(datetime(period_end)) as time, pv_estimate “PV Mittelwert”, pv_estimate10 as “PV 10%”, pv_estimate90 as “PV 90%” FROM solcast WHERE UNIXEPOCH(datetime(period_end)) > UNIXEPOCH(‘now’)
I tried anything with Query Options → Relative Time / Time Shift - nothing worked for me, and its complicated to understand. Why can’t i just define a dynamic timeRange for any panel…
it works with a barchart, but here i have very limited design / style options… i would love to use a time series chart.
What i basically want to achieve is this:
from: “now” until: “now+48h”
but without touching ALL other panels… they should stay from “now-24h” until “now”
Second question: how can i format the X-Axis, right now it only shoes HH:mm but i would like to have dd.MM.YYYY HH:mm
Thanks!