Question:
Analyze the alertmanager configs below. For all the alerts that got generated, how many total notifications will be sent out?
route:
receiver: general-email
group_by: [alertname]
routes:
- receiver: frontend-email
group_by: [env]
matchers:
- team: frontend
The following alerts get generated by Prometheus with the defined labels.
alert1
team: frontend
env: dev
alert2
team: frontend
env: dev
alert3
team: frontend
env: prod
alert4
team: frontend
env: prod
alert5
team: frontend
env: staging