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

Commit

Permalink
fix(alerts): add minio disk alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
truxnell committed Apr 16, 2022
1 parent 2489b6c commit cbdbca7
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,19 @@ spec:
description: "Minio is experiencing increased S3 errors. Operations
may not occur as expected, and service may be impacted"
summary: "Minio is experiecing elevated S3 errors."
- alert: MinioDiskOffline
expr: minio_disks_offline > 0
for: 0m
labels:
severity: critical
annotations:
summary: Minio disk offline (instance {{ $labels.instance }})
description: "Minio disk is offline\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
- alert: MinioDiskSpaceUsage
expr: disk_storage_available / disk_storage_total * 100 < 10
for: 0m
labels:
severity: warning
annotations:
summary: Minio disk space usage (instance {{ $labels.instance }})
description: "Minio available free space is low (< 10%)\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"

0 comments on commit cbdbca7

Please sign in to comment.