Hi, I am trying to use Dynamic image panel to show weather forcast image.
I have a field that has the path and image name included that should be shown in this panel.
See mySQL query that I am using:
SELECT
$__timeGroup(time_dt, '30s') AS "time",
weather_img
FROM windDB.wind_data
WHERE location = 'xxxx' AND time_dt BETWEEN (DATE_SUB(UTC_TIMESTAMP(),INTERVAL 5 MINUTE)) AND UTC_TIMESTAMP()
The weather_img
has a string like "/home/pi/pressure_info/SunCloud.png"
The grafana server is on a raspberry pi and on the same I have stored the different images for different weather situations.
But, somehow I have not managed to show the image on the panel.
How can I do that?
BR