This commit introduces alert management capabilities, including creating, updating, listing, and removing custom SQL-based alerts in the backend. It adds the necessary database migrations, API endpoints, and frontend pages to manage alerts, enabling users to define thresholds and monitor system health effectively.
4 lines
173 B
Python
4 lines
173 B
Python
from app.models.models import AlertDefinition, AuditLog, Metric, QueryStat, Target, User
|
|
|
|
__all__ = ["User", "Target", "Metric", "QueryStat", "AuditLog", "AlertDefinition"]
|