Files
helm-charts/charts/postgres-cluster/prometheus_rules/cluster-database_deadlock_conflicts-warning.yaml
2025-12-26 21:53:57 -06:00

17 lines
477 B
YAML

{{- $alert := "CNPGClusterDatabaseDeadlockConflictsWarning" -}}
{{- if not (has $alert .excludeRules) -}}
alert: {{ $alert }}
annotations:
summary: CNPG Cluster has over 10 deadlock conflicts.
description: |-
There are over 10 deadlock conflicts in
{{`{{`}} $labels.pod {{`}}`}}
expr: |
cnpg_pg_stat_database_deadlocks{namespace="{{ .namespace }}"} > 10
for: 1m
labels:
severity: warning
namespace: {{ .namespace }}
cnpg_cluster: {{ .cluster }}
{{- end -}}