Skip to content
Snippets Groups Projects
Commit 483a1c11 authored by Matthias Loibl's avatar Matthias Loibl
Browse files

contrib/kube-prometheus: Fix outdated alerts to use message annotation

parent abc89913
No related branches found
No related tags found
No related merge requests found
...@@ -7,8 +7,7 @@ ...@@ -7,8 +7,7 @@
{ {
alert: 'AlertmanagerConfigInconsistent', alert: 'AlertmanagerConfigInconsistent',
annotations: { annotations: {
description: 'The configuration of the instances of the Alertmanager cluster `{{$labels.service}}` are out of sync.', message: 'The configuration of the instances of the Alertmanager cluster `{{$labels.service}}` are out of sync.',
summary: 'Configuration out of sync',
}, },
expr: ||| expr: |||
count_values("config_hash", alertmanager_config_hash{%(alertmanagerSelector)s}) BY (service) / ON(service) GROUP_LEFT() label_replace(prometheus_operator_alertmanager_spec_replicas{%(prometheusOperatorSelector)s}, "service", "alertmanager-$1", "alertmanager", "(.*)") != 1 count_values("config_hash", alertmanager_config_hash{%(alertmanagerSelector)s}) BY (service) / ON(service) GROUP_LEFT() label_replace(prometheus_operator_alertmanager_spec_replicas{%(prometheusOperatorSelector)s}, "service", "alertmanager-$1", "alertmanager", "(.*)") != 1
...@@ -21,8 +20,7 @@ ...@@ -21,8 +20,7 @@
{ {
alert: 'AlertmanagerDownOrMissing', alert: 'AlertmanagerDownOrMissing',
annotations: { annotations: {
description: 'An unexpected number of Alertmanagers were scraped or disappeared from discovery.', message: 'An unexpected number of Alertmanagers were scraped or disappeared from discovery.',
summary: 'Alertmanager down or missing',
}, },
expr: ||| expr: |||
label_replace(prometheus_operator_alertmanager_spec_replicas{%(prometheusOperatorSelector)s}, "job", "alertmanager-$1", "alertmanager", "(.*)") / ON(job) GROUP_RIGHT() sum(up{%(alertmanagerSelector)s}) BY (job) != 1 label_replace(prometheus_operator_alertmanager_spec_replicas{%(prometheusOperatorSelector)s}, "job", "alertmanager-$1", "alertmanager", "(.*)") / ON(job) GROUP_RIGHT() sum(up{%(alertmanagerSelector)s}) BY (job) != 1
...@@ -35,8 +33,7 @@ ...@@ -35,8 +33,7 @@
{ {
alert: 'AlertmanagerFailedReload', alert: 'AlertmanagerFailedReload',
annotations: { annotations: {
description: "Reloading Alertmanager's configuration has failed for {{ $labels.namespace }}/{{ $labels.pod}}.", message: "Reloading Alertmanager's configuration has failed for {{ $labels.namespace }}/{{ $labels.pod}}.",
summary: "Alertmanager's configuration reload failed",
}, },
expr: ||| expr: |||
alertmanager_config_last_reload_successful{%(alertmanagerSelector)s} == 0 alertmanager_config_last_reload_successful{%(alertmanagerSelector)s} == 0
......
...@@ -7,8 +7,7 @@ ...@@ -7,8 +7,7 @@
{ {
alert: 'TargetDown', alert: 'TargetDown',
annotations: { annotations: {
description: '{{ $value }}% of the {{ $labels.job }} targets are down.', message: '{{ $value }}% of the {{ $labels.job }} targets are down.',
summary: 'Targets are down',
}, },
expr: '100 * (count(up == 0) BY (job) / count(up) BY (job)) > 10', expr: '100 * (count(up == 0) BY (job) / count(up) BY (job)) > 10',
'for': '10m', 'for': '10m',
...@@ -19,8 +18,7 @@ ...@@ -19,8 +18,7 @@
{ {
alert: 'DeadMansSwitch', alert: 'DeadMansSwitch',
annotations: { annotations: {
description: 'This is a DeadMansSwitch meant to ensure that the entire alerting pipeline is functional.', message: 'This is a DeadMansSwitch meant to ensure that the entire alerting pipeline is functional.',
summary: 'Alerting DeadMansSwitch',
}, },
expr: 'vector(1)', expr: 'vector(1)',
labels: { labels: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment