feat: Telegram notifications from SAC on ingest

Send Telegram alerts for high/critical events and new Problems.
Configurable via TELEGRAM_* env vars; ingest never fails on send errors.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
PTah
2026-05-27 12:21:03 +10:00
parent dea3486c43
commit cd85d7528f
9 changed files with 102 additions and 9 deletions
+4
View File
@@ -45,6 +45,10 @@ class Settings(BaseSettings):
event_schema_path: str = str(SCHEMA_PATH)
cors_origins: str = "*"
telegram_enabled: bool = False
telegram_bot_token: str = ""
telegram_chat_id: str = ""
telegram_min_severity: str = "high"
@lru_cache