mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-24 02:17:00 +08:00
15 lines
491 B
YAML
15 lines
491 B
YAML
groups:
|
|
|
|
- name: BakinsFpmExporter
|
|
|
|
|
|
rules:
|
|
|
|
- alert: Php-fpmMax-childrenReached
|
|
expr: 'sum(increase(phpfpm_max_children_reached_total[5m])) by (instance) > 3'
|
|
for: 0m
|
|
labels:
|
|
severity: warning
|
|
annotations:
|
|
summary: PHP-FPM max-children reached (instance {{ $labels.instance }})
|
|
description: "PHP-FPM reached max children on {{ $labels.instance }} ({{ $value }} times in the last 5m)\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
|