From 31ce656772d5cc1794f7aa559b9176a77a12d6d2 Mon Sep 17 00:00:00 2001 From: Ram Senthamarai Date: Fri, 13 Sep 2024 10:37:17 -0700 Subject: [PATCH] chore(dynmic alert thresholds) Support 5 min duration (#1164) --- src/seer/anomaly_detection/models/external.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/seer/anomaly_detection/models/external.py b/src/seer/anomaly_detection/models/external.py index 258829a8..43d2f910 100644 --- a/src/seer/anomaly_detection/models/external.py +++ b/src/seer/anomaly_detection/models/external.py @@ -4,7 +4,7 @@ AnomalyFlags = Literal["none", "anomaly_lower_confidence", "anomaly_higher_confidence", "no_data"] Sensitivities = Literal["low", "medium", "high"] -TimePeriods = Literal[15, 30, 60] +TimePeriods = Literal[5, 15, 30, 60] Directions = Literal["up", "down", "both"] Seasonalities = Literal["hourly", "daily", "weekly", "auto"]