blob: ca8bd66e6e2d8bff961dfb7a08c8a77b9dbb973f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
## Alerts
[% if entry.alerts %]
The following alerts are available:
| Alert name | On metric | Description |
|:------------|:----------|:------------|
[% for alert in entry.alerts %]
| [ [[ alert.name ]] ]([[ alert.link ]]) | [[ alert.metric ]] | [[ alert.info ]] |
[% endfor %]
[% else %]
There are no alerts configured by default for this integration.
[% endif %]
|