Hi all,
I generate alerts from EC2 instances using metrics reported by node exporter.
For some EC2 instances, which are tagged with "low_priority_alerts: 1" tag, I'd like reduce the alert severity.
To achieve this I'm trying to make use of the 'alert_relabel_configs', like this:
alert_relabel_configs:
- source_labels: [ low_priority_alerts ]
regex: 1
target_label: severity
replacement: info
But it seems to have no effect, and the alerts are still reported with the original severity of 'error'.
Am I using it right?
Is there another possibility to achieve what I want?