Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
fix(monitoring): less restrictive talos free disk space alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
ajgon committed Feb 4, 2024
1 parent 9e3e9fe commit 41e2864
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ rules:
- alert: TalosSystemDiskLowSpace
expr: >-
node_filesystem_free_bytes{mountpoint="/var"} / node_filesystem_size_bytes{mountpoint="/var"} < 0.3
node_filesystem_free_bytes{mountpoint="/var"} < 15*1024*1024*1024
for: 5m
labels:
severity: warning
Expand All @@ -165,7 +165,7 @@ rules:
- alert: TalosSystemDiskVeryLowSpace
expr: >-
node_filesystem_free_bytes{mountpoint="/var"} / node_filesystem_size_bytes{mountpoint="/var"} < 0.15
node_filesystem_free_bytes{mountpoint="/var"} < 5*1024*1024*1024
for: 5m
labels:
severity: critical
Expand Down

0 comments on commit 41e2864

Please sign in to comment.