Skip to content

Commit

Permalink
add cluster and namespace to unhealthy components (#6330)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdurham authored Feb 7, 2024
1 parent 41d47be commit 21324d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operations/agent-flow-mixin/alerts/controller.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ alert.newGroup(
// Unhealthy components detected.
alert.newRule(
'UnhealthyComponents',
'sum(agent_component_controller_running_components{health_type!="healthy"}) > 0',
'sum by (cluster, namespace) (agent_component_controller_running_components{health_type!="healthy"}) > 0',
'Unhealthy Flow components detected.',
'15m',
),
Expand Down

0 comments on commit 21324d2

Please sign in to comment.