# Priority

Alert priority levels for notification routing and escalation.

Determines the urgency and routing behavior of alert notifications. Higher priority alerts may trigger immediate notifications, phone calls, or escalation to on-call personnel.

## HIGH

Critical issues requiring immediate attention. Examples: Model completely down, severe data quality issues.

## MEDIUM

Important issues that should be addressed promptly. Examples: Performance degradation, moderate drift.

## LOW

Minor issues for awareness and trend monitoring. Examples: Small drift increases, non-critical feature changes.

### Example

```python
# 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'*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fiddler.ai/api/fiddler-python-client-sdk/constants/priority.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
