alert_notification.html 831 B

12345678910111213141516171819202122232425262728293031
  1. <!-- This email is sent when an existing user is added to an organization -->
  2. [[Subject .Subject "Grafana Alert: [ [[.State]] ] [[.Name]]" ]]
  3. Alertstate: [[.State]]<br />
  4. [[.AlertPageUrl]]<br />
  5. [[.DashboardLink]]<br />
  6. [[.Description]]<br />
  7. [[if eq .State "Ok"]]
  8. Everything is Ok
  9. [[end]]
  10. <img src="[[.DashboardImage]]" />
  11. [[if ne .State "Ok" ]]
  12. <table class="row">
  13. <tr>
  14. <td class="expander">Serie</td>
  15. <td class="expander">State</td>
  16. <td class="expander">Actual value</td>
  17. </tr>
  18. [[ range $ta := .TriggeredAlerts]]
  19. <tr>
  20. <td class="expander">[[$ta.Name]]</td>
  21. <td class="expander">[[$ta.State]]</td>
  22. <td class="expander">[[$ta.ActualValue]]</td>
  23. </tr>
  24. [[end]]
  25. </table>
  26. [[end]]