mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 08:57:19 +08:00
Merge pull request #56 from orange-cloudfoundry/master
Add OpenEBS and Minio alert
This commit is contained in:
commit
018bd44db2
2 changed files with 21 additions and 0 deletions
|
|
@ -39,6 +39,8 @@ Collection available here: **[https://awesome-prometheus-alerts.grep.to](https:/
|
|||
- [Windows](https://awesome-prometheus-alerts.grep.to/rules#windows-server)
|
||||
- [Juniper](https://awesome-prometheus-alerts.grep.to/rules#juniper)
|
||||
- [CoreDNS](https://awesome-prometheus-alerts.grep.to/rules#coredns)
|
||||
- [OpenEBS](https://awesome-prometheus-alerts.grep.to/rules#openebs)
|
||||
- [Minio](https://awesome-prometheus-alerts.grep.to/rules#minio)
|
||||
|
||||
## Contributing
|
||||
|
||||
|
|
|
|||
|
|
@ -565,6 +565,25 @@ services:
|
|||
query: '100.0 - 100 * ((wmi_logical_disk_free_bytes{} / 1024 / 1024 ) / (wmi_logical_disk_size_bytes{} / 1024 / 1024)) > 80'
|
||||
severity: error
|
||||
|
||||
- name: OpenEBS
|
||||
exporters:
|
||||
- name: OpenEBS
|
||||
rules:
|
||||
- name: Used pool capacity
|
||||
description: 'OpenEBS Pool use more than 80% of his capacity\n VALUE = {{ $value }}\n LABELS: {{ $labels }}'
|
||||
query: '(openebs_used_pool_capacity_percent) > 80'
|
||||
severity: warning
|
||||
|
||||
- name: Minio
|
||||
exporters:
|
||||
- name: Minio
|
||||
rules:
|
||||
- name: Disk down
|
||||
description: 'Minio Disk is down\n VALUE = {{ $value }}\n LABELS: {{ $labels }}'
|
||||
query: 'minio_offline_disks > 0'
|
||||
severity: error
|
||||
|
||||
|
||||
- name: Juniper
|
||||
exporters:
|
||||
- name: czerwonk/junos_exporter
|
||||
|
|
|
|||
Loading…
Reference in a new issue