On Monday, 14 September 2020 11:38:43 UTC+1, Sandeep Rao Kokkirala wrote: > > consider 1st service is down ..our alertmanager is triggers the alert > ...when 2nd service is down after 10 minutes ..that time it triggering both > 1st service and 2nd service alerts ...1st service alert already triggered > so we don't want 1st service alert to repeat. >
It's sending a new *grouped* alert which contains both the original alert and the 2nd alert, grouped together. You asked for this with group_by: ['alertname'] which means that two alerts with the same 'alertname' label should be considered part of the same group. You can disable grouping entirely with: group_by: ['...'] (yes, that's literally three dots in there) https://prometheus.io/docs/alerting/latest/configuration/#route -- You received this message because you are subscribed to the Google Groups "Prometheus Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/prometheus-users/f5bc1247-de52-4364-8526-f03a2dabacc1o%40googlegroups.com.

