Reputation: 86327
Is it possible to remove the link that we get when AlertManager posts to Slack?
At the moment it's going to http://localhost:9093/.
Upvotes: 3
Views: 2558
Reputation: 383
You can define the slack.default.titlelink
template to be empty directly within the title_link
(or titleLink
when using the prometheus operator) definition, which will remove the link from the slack message title:
title_link: '{{ define "slack.default.titlelink" }}{{ "" }}{{ end }}'
Setting title_link: ""
directly does not work, as alertmanager sees this as a value not being passed, and therefore uses the default template.
Upvotes: 0
Reputation: 144
You can overwrite it with different link, for example the real one (can even try to pull null). Mind that default configuration is being used if you don't change it in Alertmanager receivers:
[ title_link: <tmpl_string> | default = '{{ template "slack.default.titlelink" . }}' ]
where
{{ define "slack.default.titlelink" }}{{ template "__alertmanagerURL" . }}{{ end }}
Please check your current config by going to <your_prometheus_url>:9093/#/status
and then change configs in alertmanager.yml receivers:
section.
Check slack_receiver configuration here: https://www.prometheus.io/docs/alerting/latest/configuration/#slack_config
Check this blog entry for some examples: https://prometheus.io/blog/2016/03/03/custom-alertmanager-templates/
Upvotes: 1