# How to add link on dashboard in Alertmanager config?

**URL:** https://discuss.prometheus.io/t/how-to-add-link-on-dashboard-in-alertmanager-config/565
**Category:** General Help/Support
**Created:** [October 20, 2021, 8:01am UTC](https://discuss.prometheus.io/t/how-to-add-link-on-dashboard-in-alertmanager-config/565 "2021-10-20T08:01:06Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![rom.adm](https://avatars.discourse-cdn.com/v4/letter/r/b487fb/32.png) [@rom.adm](https://discuss.prometheus.io/u/rom.adm)
#### Post date: [October 20, 2021, 8:01am UTC](https://discuss.prometheus.io/t/how-to-add-link-on-dashboard-in-alertmanager-config/565/1 "2021-10-20T08:01:06Z")

</div>

Hello everybody!  
I need send with alert messages grafana dashboard.

I have configured to send alerts to the slack of the form:

Instance check switch 192.168.0.17 down  
192.168.0.17 snmp job not running for more than 30 seconds.

How to add a line - link to grafana control panel?

Here is my config:

global:  
slack\_api\_url: [Slack platform overview | Slack Developer Docs](https://hooks.slack.com/services/XXXXXXXXXXXXXXXXXX)  
opsgenie\_api\_key: XXXXXXXXXXXXXXXXXXXXXXXXXXX  
route:  
group\_by: [‘alertname’, ‘cluster’, ‘job’, ‘env’, ‘service’]  
repeat\_interval: 15m  
group\_interval: 3m

# default - send ‘info’ to Slack only

receiver: ‘default’  
routes:  
# all ‘warning’ to the ‘warning’ receiver with P3  
- match:  
severity: warning  
receiver: warning  
# all ‘critical’ to the ‘critical’ receiver with P1  
- match:  
severity: critical  
receiver: critical  
receivers:

- name: ‘default’  
slack\_configs:
  - send\_resolved: true  
title: “😱 {{ .CommonAnnotations.summary }}”  
text: “{{ range .Alerts }}{{ .Annotations.description }}\n{{ end }}”

Or maybe what needs to be added to alert.rules?  
Thanks
