Skip to content

Commit

Permalink
bump SystemMemoryExceedsReservation alert threshold to 95%
Browse files Browse the repository at this point in the history
In order to reduce the excessive firing of this alert we
are making it fire at 95% of system memory utilization
instead of the current 90 %. By making this change, we
hope to keep this alert still relevant for users while
reducing the noise.

Signed-off-by: Harshal Patil <harpatil@redhat.com>
  • Loading branch information
harche committed Aug 16, 2021
1 parent 9f7f2f2 commit 5148f16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
rules:
- alert: SystemMemoryExceedsReservation
expr: |
sum by (node) (container_memory_rss{id="/system.slice"}) > ((sum by (node) (kube_node_status_capacity{resource="memory"} - kube_node_status_allocatable{resource="memory"})) * 0.9)
sum by (node) (container_memory_rss{id="/system.slice"}) > ((sum by (node) (kube_node_status_capacity{resource="memory"} - kube_node_status_allocatable{resource="memory"})) * 0.95)
for: 15m
labels:
severity: warning
Expand Down

0 comments on commit 5148f16

Please sign in to comment.