blob: 56f08d4c558f02756da3319a321a22b4da6fb509 (
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 %]
| [ [[ strfy(alert.name) ]] ]([[ strfy(alert.link) ]]) | [[ strfy(alert.metric) ]] | [[ strfy(alert.info) ]] |
[% endfor %]
[% else %]
There are no alerts configured by default for this integration.
[% endif %]
|