Bird
0
0

Given this Alertmanager route configuration snippet, what is the effective receiver for alerts with label severity=critical?

medium📝 Command Output Q4 of 15
Kubernetes - Monitoring and Logging
Given this Alertmanager route configuration snippet, what is the effective receiver for alerts with label severity=critical? routes: - match: severity: critical receiver: 'pagerduty' - receiver: 'email'
ABoth pagerduty and email
Bemail
Cpagerduty
DNo receiver, alerts are dropped
Step-by-Step Solution
Solution:
  1. Step 1: Understand route matching in Alertmanager

    Routes with 'match' filter alerts by label and send to specified receiver.
  2. Step 2: Identify which route matches severity=critical alerts

    The first route matches severity=critical and sends to 'pagerduty'.
  3. Final Answer:

    Alerts with severity=critical go to pagerduty only -> Option C
  4. Quick Check:

    Route match sends alerts to pagerduty [OK]
Quick Trick: Matching route overrides default receiver [OK]
Common Mistakes:
  • Assuming alerts go to both receivers
  • Thinking unmatched alerts are dropped
  • Ignoring route matching order

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes