I'm using prometheus with alertmenager and have confusing problem. Notifications one is my custom and another with [Firing] title.
Below example and configuration. I would like to have only my custom alert.
2:47 PM
[FIRING:1] (InstanceDown labels critical)
2:47 PM
custom notification
alert.rules
groups:
- name: targets
rules:
- alert: InstanceDown
expr: up == 0
for: 30s
labels:
severity: critical
summary: {{ labels.instance }}
alertmanager.yml
global:
slack_api_url: xyz
route:
group_interval: 1m
repeat_interval: 5m
receiver: 'backend'
group_by: ['alertname', 'instance', 'application']
routes:
- match:
severity: critical
receiver: 'backend'
receivers:
- name: 'backend'
slack_configs:
- send_resolved: true
- title: '{{ .CommonAnnotations.summary }}'