21 lines
449 B
YAML
21 lines
449 B
YAML
|
---
|
||
|
notifiers:
|
||
|
# - name: Telegram
|
||
|
# type: telegram
|
||
|
# uid: telegram-1
|
||
|
# org_id: 1
|
||
|
# is_default: false
|
||
|
# settings:
|
||
|
# chatid: ${TELEGRAM_CHATID}
|
||
|
# bottoken: ${TELEGRAM_BOTTOKEN}
|
||
|
# uploadImage: true
|
||
|
{{ with secret "kv/data/grafana" -}}
|
||
|
- name: Personal email
|
||
|
type: email
|
||
|
uid: email-1
|
||
|
org_id: 1
|
||
|
is_default: false
|
||
|
settings:
|
||
|
addresses: "{{ .Data.data.alert_email_addresses }}"
|
||
|
{{ end -}}
|