mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-24 02:17:00 +08:00
commit
ea7e6d6aa9
1 changed files with 3 additions and 3 deletions
|
|
@ -864,7 +864,7 @@ groups:
|
||||||
rules:
|
rules:
|
||||||
- name: HAProxy down
|
- name: HAProxy down
|
||||||
description: HAProxy down
|
description: HAProxy down
|
||||||
query: 'haproxy_up = 0'
|
query: 'haproxy_up == 0'
|
||||||
severity: critical
|
severity: critical
|
||||||
- name: HAProxy high HTTP 4xx error rate backend
|
- name: HAProxy high HTTP 4xx error rate backend
|
||||||
description: Too many HTTP requests with status 4xx (> 5%) on backend {{ $labels.fqdn }}/{{ $labels.backend }}
|
description: Too many HTTP requests with status 4xx (> 5%) on backend {{ $labels.fqdn }}/{{ $labels.backend }}
|
||||||
|
|
@ -912,11 +912,11 @@ groups:
|
||||||
severity: warning
|
severity: warning
|
||||||
- name: HAProxy backend down
|
- name: HAProxy backend down
|
||||||
description: HAProxy backend is down
|
description: HAProxy backend is down
|
||||||
query: 'haproxy_backend_up = 0'
|
query: 'haproxy_backend_up == 0'
|
||||||
severity: critical
|
severity: critical
|
||||||
- name: HAProxy server down
|
- name: HAProxy server down
|
||||||
description: HAProxy server is down
|
description: HAProxy server is down
|
||||||
query: 'haproxy_server_up = 0'
|
query: 'haproxy_server_up == 0'
|
||||||
severity: critical
|
severity: critical
|
||||||
- name: HAProxy frontend security blocked requests
|
- name: HAProxy frontend security blocked requests
|
||||||
description: HAProxy is blocking requests for security reason
|
description: HAProxy is blocking requests for security reason
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue