Priority
Priority
HIGH
MEDIUM
LOW
Example
# High priority for production model failures
critical_alert = AlertRule(
name="Model Down",
priority=Priority.HIGH
)
# Medium priority for performance monitoring
perf_alert = AlertRule(
name="Accuracy Drop",
priority=Priority.MEDIUM
)HIGH = 'HIGH'
MEDIUM = 'MEDIUM'
LOW = 'LOW'
Last updated
Was this helpful?