From 65998f9678063382447ec6164a3a2171e3af1cf9 Mon Sep 17 00:00:00 2001 From: David Grashton Date: Wed, 13 May 2026 17:18:48 -0700 Subject: [PATCH] Update variables.md with new info In https://datadoghq.atlassian.net/browse/MNTS-93277 we learned that in addition to transitions from ALERT to OK the #is_alert_recovery condition also gets triggered by transitions from ALERT to WARN. Adding this info to the doc --- content/en/monitors/notify/variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/monitors/notify/variables.md b/content/en/monitors/notify/variables.md index 460054204e9..2d9ecbe3b1d 100644 --- a/content/en/monitors/notify/variables.md +++ b/content/en/monitors/notify/variables.md @@ -46,7 +46,7 @@ The following conditional variables are available: | `{{^is_recovery}}` | The monitor does not recover from `ALERT`, `WARNING`, `UNKNOWN`, or `NO DATA` | | `{{#is_warning_recovery}}` | The monitor recovers from `WARNING` to `OK` | | `{{^is_warning_recovery}}` | The monitor does not recover from `WARNING` to `OK` | -| `{{#is_alert_recovery}}` | The monitor recovers from `ALERT` to `OK` | +| `{{#is_alert_recovery}}` | The monitor recovers from `ALERT` to `WARNING` or `OK` | | `{{^is_alert_recovery}}` | The monitor does not recover from an ALERT to OK | | `{{#is_alert_to_warning}}` | The monitor transitions from `ALERT` to `WARNING` | | `{{^is_alert_to_warning}}` | The monitor does not transition from `ALERT` to `WARNING` |