Tighten ArgoCDAppOutOfSync alert timing to clear faster after sync

Reduced `for` from 30m to 5m and lookback window from 5m to 1m. The old
values caused alerts to linger long after apps returned to Synced state.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-03-26 15:44:09 -07:00
commit a37012385f
2 changed files with 3 additions and 2 deletions

View file

@ -323,7 +323,7 @@ groups:
- uid: argocd-app-out-of-sync
title: ArgoCDAppOutOfSync
condition: C
for: 30m
for: 5m
noDataState: OK
execErrState: Alerting
annotations:
@ -337,7 +337,7 @@ groups:
- refId: A
datasourceUid: prometheus
relativeTimeRange:
from: 300
from: 60
to: 0
model:
expr: >-

View file

@ -0,0 +1 @@
Tighten ArgoCDAppOutOfSync alert: reduce pending duration from 30m to 5m and lookback window from 5m to 1m so alerts clear faster after sync.