Recall & Review
beginner
What is the main role of Prometheus Alertmanager?
Prometheus Alertmanager manages alerts sent by Prometheus servers. It groups, deduplicates, and routes alerts to notification channels like email, Slack, or PagerDuty.
Click to reveal answer
intermediate
How does Alertmanager group alerts?
Alertmanager groups alerts based on labels such as alertname, severity, or custom labels. Grouping helps send related alerts together to reduce noise.
Click to reveal answer
beginner
What is a receiver in Prometheus Alertmanager?
A receiver is a destination where Alertmanager sends notifications. Examples include email addresses, Slack channels, or webhook endpoints.
Click to reveal answer
advanced
What is the purpose of 'inhibit_rules' in Alertmanager configuration?
Inhibit rules silence certain alerts when related alerts are already firing. This prevents alert noise by suppressing less important alerts when a critical one is active.
Click to reveal answer
beginner
Which file typically contains Alertmanager configuration in Kubernetes setups?
Alertmanager configuration is usually stored in a ConfigMap mounted into the Alertmanager pod, often named 'alertmanager.yaml'.
Click to reveal answer
What does Prometheus Alertmanager do with duplicate alerts?
✗ Incorrect
Alertmanager deduplicates alerts to prevent sending multiple notifications for the same issue.
Which label is commonly used to group alerts in Alertmanager?
✗ Incorrect
The 'alertname' label is commonly used to group related alerts together.
What is the function of 'receivers' in Alertmanager?
✗ Incorrect
Receivers specify the destinations for alert notifications, like email or Slack.
How can Alertmanager reduce alert noise when a critical alert is firing?
✗ Incorrect
Inhibit rules silence less important alerts when a critical alert is active, reducing noise.
Where is Alertmanager configuration usually stored in Kubernetes?
✗ Incorrect
Alertmanager config is typically stored in a ConfigMap mounted as a file named alertmanager.yaml.
Explain how Prometheus Alertmanager groups and routes alerts to reduce notification noise.
Think about how related alerts are combined and sent to the right place.
You got /4 concepts.
Describe the typical setup of Alertmanager configuration in a Kubernetes environment.
Consider how Kubernetes manages configuration files for pods.
You got /4 concepts.