Cet article dans la catégorie [informatique] a été publié il y a 7 ans. Le contenu est potentiellement obsolète.
Since Grafana 4.1, it is possible to render a whole dashboard as PNG (thanks to issue #2085).
It’s easy to retrieve a dashboard image with curl and send it via email :
curl -H "Authorization: Bearer eyJrIjoiMGFCaHRzMVkwVOVwMnZoTmxYN00xQjJxajF0N1NMemoiLCJuIjoiRXhwb3J0IiwiaWQiOjF9" "https://grafana.yoursite.com/render/dashboard/db/telegraf-metrics?width=1800&from=now-48h&to=now" > dashboard.png
echo "Here is your daily Grafana snapshot" | mutt -s "Daily Grafana" -a dashboard.png -- your@email.com
Of course, you need to customize this example to your needs and setup a cron job to get your daily email :)