ObserveNow
...
Alerting
Contact Points

Slack

refer the following steps to create a slack based contact point in grafana create a slack app and an incoming webhook following these instructions https //api slack com/messaging/webhooks navigate to contact points tab in the alerting section of the grafana instance click on add contact point , give a name to the contact point and select slack from the integration drop down add the webhook created from the first step under the webhook url option add the following snippet under the title option in the optional slack settings section \[{{ status | toupper }}{{ if eq status "firing" }} {{ alerts firing | len }}{{ end }}] {{ if commonlabels cluster }}\[{{ commonlabels cluster }}]{{ end }} {{ commonlabels alertname }} add the following snippet under the text body option in the optional slack settings section {{ with index alerts 0 }} \ chart with upwards trend <{{ generatorurl }}|graph> {{ if annotations runbook }} \ notebook <{{ annotations runbook }}|runbook> {{ end }} {{ end }} alert details {{ range alerts }} {{ if labels severity }}> severity `{{ labels severity }}`{{ end }} \> description {{ annotations description }} {{ if annotations printdetails }}> \> details {{ range labels sortedpairs }}>• {{ name }} `{{ value }}` {{ end }} {{ end }} {{ end }} while this standard alert template should be sufficient for most use cases, you can also customize the alert template using the grafana documentation