Skip to content

Commit 9f82985

Browse files
Update pools.yaml add ceph pool full alerts
add ceph pool full alerts
1 parent 7578600 commit 9f82985

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

charts/ceph-operations/alerts/pools.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,34 @@ groups:
6262
annotations:
6363
description: "Pool `{{`{{ $labels.name }}`}}` will be full in less than 5 days assuming the average fill-up rate of the past 48 hours."
6464
summary: "Pool growth rate may soon exceed capacity"
65+
66+
{{- if not (.Values.prometheusRules.disabled.CephPoolUsageHigh | default false) }}
67+
- alert: CephPoolUsageHigh
68+
expr: ceph_pool_percent_used > 70
69+
for: 5m
70+
labels:
71+
service: ceph
72+
severity: warning
73+
type: ceph_default
74+
{{- include "cloud-storage-operations.additionalRuleLabels" . | nindent 6 }}
75+
annotations:
76+
description: |
77+
"Pool `{{`{{ $labels.name }}`}}` capacity utilization is high, it impacts cluster operations and possess risk of pool full if not addressed in short time, either release space or add more capacity immediately"
78+
summary: "One or more Ceph pools are nearly full"
79+
{{- end }}
80+
81+
{{- if not (.Values.prometheusRules.disabled.CephPoolUsageCritical | default false) }}
82+
- alert: CephPoolUsageCritical
83+
expr: ceph_pool_percent_used > 80
84+
for: 5m
85+
labels:
86+
service: ceph
87+
severity: warning
88+
type: ceph_default
89+
{{- include "cloud-storage-operations.additionalRuleLabels" . | nindent 6 }}
90+
annotations:
91+
description: |
92+
"Pool `{{`{{ $labels.name }}`}}` capacity utilization is criticaly high, it impacts cluster operations and possess risk of pool full if not addressed in short time, either release space or add more capacity immediately"
93+
summary: "One or more Ceph pools are criticaly full"
6594
{{- end }}
6695
{{- end }}

0 commit comments

Comments
 (0)