Skip to content

Commit f94d064

Browse files
committed
MK8S-11 Extend Threshhold for NodeSystemSaturation
1 parent a9c4cad commit f94d064

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
and Fluent Bit Helm chart version to [0.50.0](https://github.com/fluent/helm-charts/releases/tag/fluent-bit-0.50.0)
1616
(PR[#4627](https://github.com/scality/metalk8s/pull/4627))
1717

18+
### Bug Fixes
19+
20+
- Fix a Bug where NodeSystemSaturation alert triggers too early after only 15 minutes of high load
21+
(PR[#4641](https://github.com/scality/metalk8s/pull/4641))
22+
1823
## Release 130.0.4 (in development)
1924

2025
## Release 130.0.3

charts/kube-prometheus-stack.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ commonLabels:
99
app.kubernetes.io/managed-by: 'metalk8s'
1010
metalk8s.scality.com/monitor: ''
1111

12+
customRules:
13+
NodeSystemSaturation:
14+
for: "30m"
15+
1216
# NOTE: cannot use this at the moment because kube-state-metrics uses it incorrectly
1317
# global:
1418
# imageRegistry: '__var__(repo.registry_endpoint)'

salt/metalk8s/addons/prometheus-operator/deployed/chart.sls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74765,7 +74765,7 @@ spec:
7476574765
expr: |-
7476674766
node_load1{job="node-exporter"}
7476774767
/ count without (cpu, mode) (node_cpu_seconds_total{job="node-exporter", mode="idle"}) > 2
74768-
for: 15m
74768+
for: 30m
7476974769
labels:
7477074770
severity: warning
7477174771
- alert: NodeMemoryMajorPagesFaults

0 commit comments

Comments
 (0)