28 lines
712 B
YAML
28 lines
712 B
YAML
|
---
|
||
|
{{ with secret "kv/data/slack" -}}
|
||
|
notifiers:
|
||
|
- name: Slack Bot
|
||
|
type: slack
|
||
|
uid: slack-1
|
||
|
org_id: 1
|
||
|
is_default: false
|
||
|
settings:
|
||
|
url: "{{ .Data.data.bot_url }}"
|
||
|
recipient: "#site-notifications"
|
||
|
username: Grafana Alerts
|
||
|
icon_url: https://grafana.iamthefij.com/public/img/grafana_icon.svg
|
||
|
token: "{{ .Data.data.bot_token }}"
|
||
|
uploadImage: true
|
||
|
mentionChannel: channel
|
||
|
- name: Slack Hook
|
||
|
type: slack
|
||
|
uid: slack-2
|
||
|
org_id: 1
|
||
|
is_default: true
|
||
|
settings:
|
||
|
url: "{{ .Data.data.hook_url }}"
|
||
|
icon_url: https://grafana.iamthefij.com/public/img/grafana_icon.svg
|
||
|
uploadImage: true
|
||
|
mentionChannel: channel
|
||
|
{{ end -}}
|