Skip to content

Commit

Permalink
Support multiple service in kafka alerts
Browse files Browse the repository at this point in the history
Issue: ZENKO-4857
  • Loading branch information
KillianG committed Aug 12, 2024
1 parent fcd5036 commit e7a4db8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
11 changes: 11 additions & 0 deletions monitoring/kafka/alerts.test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ tests:
description: 'Kafka: Broker count is down'
exp_labels:
severity: warning
service: ${service}
- alertname: BrokersCountCritical
eval_time: 3m
exp_alerts: []
Expand Down Expand Up @@ -78,6 +79,7 @@ tests:
summary: 'Kafka: No active controller'
exp_labels:
severity: critical
service: ${service}
- alertname: ActiveControllerCritical
eval_time: 3m
exp_alerts: []
Expand Down Expand Up @@ -108,6 +110,7 @@ tests:
summary: 'Kafka: 1 under-replicated partitons'
exp_labels:
severity: critical
service: ${service}
- alertname: UnderReplicatedPartitions
eval_time: 3m
exp_alerts:
Expand All @@ -119,6 +122,7 @@ tests:
summary: 'Kafka: 2 under-replicated partitons'
exp_labels:
severity: critical
service: ${service}

# OfflinePartitons
##################################################################################################
Expand Down Expand Up @@ -147,6 +151,7 @@ tests:
summary: 'Kafka: 1 offline partitons'
exp_labels:
severity: critical
service: ${service}
- alertname: OfflinePartitons
eval_time: 3m
exp_alerts:
Expand All @@ -159,6 +164,7 @@ tests:
summary: 'Kafka: 2 offline partitons'
exp_labels:
severity: critical
service: ${service}

# RemainingDiskSpaceWarning
##################################################################################################
Expand Down Expand Up @@ -198,6 +204,7 @@ tests:
namespace: zenko
persistentvolumeclaim: artesca-data-base-queue-1
severity: warning
service: ${service}
- alertname: RemainingDiskSpaceWarning
eval_time: 5d8h
exp_alerts: []
Expand Down Expand Up @@ -225,6 +232,7 @@ tests:
summary: Zookeeper Sync Disconected
exp_labels:
severity: warning
service: ${service}

# ConsumerLagWarning
##################################################################################################
Expand Down Expand Up @@ -274,6 +282,7 @@ tests:
cluster_name: artesca-data-base-queue
group: notification
severity: warning
service: ${service}
- alertname: ConsumerLagWarning
eval_time: 20m
exp_alerts:
Expand All @@ -290,6 +299,7 @@ tests:
cluster_name: artesca-data-base-queue
group: replication
severity: warning
service: ${service}
- exp_annotations:
description: |
Kafka consumer lag has been more more than 300 seconds
Expand All @@ -303,3 +313,4 @@ tests:
cluster_name: artesca-data-base-queue
group: notification
severity: warning
service: ${service}
8 changes: 8 additions & 0 deletions monitoring/kafka/alerts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ groups:
for: 1m
labels:
severity: warning
service: ${service}
annotations:
summary: 'Not all expected brokers are online.'
description: 'Kafka: Broker count is down'
Expand All @@ -44,6 +45,7 @@ groups:
for: 1m
labels:
severity: critical
service: ${service}
annotations:
summary: 'No Brokers online'
description: 'Kafka: Broker count is 0'
Expand All @@ -53,6 +55,7 @@ groups:
for: 1m
labels:
severity: critical
service: ${service}
annotations:
description: >-
No broker in the cluster is reporting as the active controller in the last 1 minute interval. During steady state there should
Expand All @@ -64,6 +67,7 @@ groups:
for: 1m
labels:
severity: critical
service: ${service}
annotations:
description: >-
Under-replicated partitions means that one or more replicas are not available. This is usually because a broker is down. Restart
Expand All @@ -75,6 +79,7 @@ groups:
for: 1m
labels:
severity: critical
service: ${service}
annotations:
description: >-
After successful leader election, if the leader for partition dies, then the partition moves to the OfflinePartition state.
Expand All @@ -91,6 +96,7 @@ groups:
for: 2m
labels:
severity: warning
service: ${service}
annotations:
description: 'Kafka Broker has low disk space'
summary: 'Kafka Broker has low disk space'
Expand All @@ -101,6 +107,7 @@ groups:
for: 1m
labels:
severity: warning
service: ${service}
annotations:
summary: 'Zookeeper Sync Disconected'
description: 'Kafka Zookeeper Sync Disconected'
Expand All @@ -116,6 +123,7 @@ groups:
for: 5m
labels:
severity: warning
service: ${service}
annotations:
summary: 'Kafka: consumer lag is too high for {{ $labels.group }}'
description: |
Expand Down

0 comments on commit e7a4db8

Please sign in to comment.