28 lines
707 B
YAML
28 lines
707 B
YAML
---
|
|
{{ with nomadVar "nomad/jobs/grafana" -}}
|
|
notifiers:
|
|
- name: Slack Bot
|
|
type: slack
|
|
uid: slack-1
|
|
org_id: 1
|
|
is_default: false
|
|
settings:
|
|
url: "{{ .slack_bot_url }}"
|
|
recipient: "#site-notifications"
|
|
username: Grafana Alerts
|
|
icon_url: https://grafana.iamthefij.com/public/img/grafana_icon.svg
|
|
token: "{{ .slack_bot_token }}"
|
|
uploadImage: true
|
|
mentionChannel: channel
|
|
- name: Slack Hook
|
|
type: slack
|
|
uid: slack-2
|
|
org_id: 1
|
|
is_default: true
|
|
settings:
|
|
url: "{{ .slack_hook_url }}"
|
|
icon_url: https://grafana.iamthefij.com/public/img/grafana_icon.svg
|
|
uploadImage: true
|
|
mentionChannel: channel
|
|
{{ end -}}
|