Spaces:
Running
Running
File size: 11,235 Bytes
28a08e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | """backend/api/incident_registry.py β GAP-A1: Incident Registry centrale.
Registro unico degli incidenti dell'agente con:
- Causa radice identificata via euristica leggera (zero LLM)
- Deduplicazione per firma errore: stessa firma β occurrences++
- Status lifecycle: open β resolved | suppressed
- Delta tracking: get_delta(since_ms) per viste incrementali (GAP-A7)
Storage (nessuna nuova tabella Supabase):
- In-memory dict _incidents (fonte di veritΓ nel processo)
- agent_memory (category='incident') β sopravvive ai restart
API:
GET /api/incidents β lista incidenti aperti
GET /api/incidents/delta β delta da since_ms (GAP-A7)
POST /api/incidents β crea manualmente
PATCH /api/incidents/{id}/resolve β chiude incidente
"""
from __future__ import annotations
import asyncio
import hashlib
import json
import time
from typing import Any, Optional
from fastapi import APIRouter, Depends, HTTPException
from .auth_guard import require_role, AuthRole
from pydantic import BaseModel
import logging
_logger = logging.getLogger("agente_ai") # S-BUGFIX
logger = logging.getLogger("agente_ai.incident_registry")
router = APIRouter(prefix="/api/incidents", tags=["incidents"], dependencies=[Depends(require_role(AuthRole.MACHINE))]) # GAP-1-fix: router-level auth
# βββ In-memory store βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_incidents: dict[str, dict] = {} # id β incident
# βββ Root-cause heuristics (zero LLM) ββββββββββββββββββββββββββββββββββββββββ
_RC_RULES: list[tuple[list[str], str, str]] = [
(["timeout", "timed out", "TimeoutError", "ReadTimeout"],
"timeout", "Operazione scaduta β aumenta timeout o ottimizza la query"),
(["PermissionError", "403", "Forbidden", "access denied", "permission"],
"permission", "Permessi insufficienti β verifica token/chiavi API"),
(["ConnectionError", "ConnectTimeout", "httpx.Connect", "socket", "network"],
"network", "Errore di rete β verifica connettivitΓ Railway β API esterna"),
(["OpenAI", "Anthropic", "429", "rate limit", "quota", "RateLimitError"],
"ai_quota", "Quota AI esaurita β attendi o ruota provider"),
(["Supabase", "postgres", "relation does not exist", "column", "database"],
"database", "Errore database β verifica schema Supabase e credenziali"),
(["NameError", "AttributeError", "TypeError", "KeyError", "IndexError", "SyntaxError"],
"code_bug", "Bug nel codice β analizza traceback e correggi"),
(["MemoryError", "OOM", "out of memory", "killed"],
"memory", "Memoria esaurita β riduci payload o ottimizza allocazione"),
]
def _classify(error: str) -> tuple[str, str]:
e = error[:800].lower()
for keywords, cat, cause in _RC_RULES:
if any(k.lower() in e for k in keywords):
return cat, cause
return "internal", "Errore interno non classificato β analizza i log Railway"
def _sig(goal: str, error: str) -> str:
cat, _ = _classify(error)
return hashlib.sha256(f"{goal[:80]}:{cat}:{error[:120]}".encode()).hexdigest()[:16]
# βββ Core API (usata da agent.py e scheduler.py) βββββββββββββββββββββββββββββ
async def log_incident(task_id: str, goal: str, error: str, source: str = "agent") -> str:
"""
Registra un incidente. Se esiste giΓ un incidente aperto con la stessa firma
(stesso tipo di errore sullo stesso goal), incrementa occurrences e aggiorna
last_seen invece di crearne uno nuovo. Ritorna l'incident_id.
Fire-and-forget: non solleva mai eccezioni verso il chiamante.
"""
try:
sig = _sig(goal, error)
now_ms = int(time.time() * 1000)
cat, rc = _classify(error)
existing = next((i for i in _incidents.values()
if i.get("signature") == sig and i.get("status") == "open"), None)
if existing:
existing["occurrences"] += 1
existing["last_seen"] = now_ms
existing["updated_at"] = now_ms
asyncio.create_task(_sb_save(existing)).add_done_callback(
lambda t: logger.debug("_sb_save/update exc: %s", t.exception())
if not t.cancelled() and t.exception() is not None else None
)
logger.info("Incident %s: occurrences=%d (%s)", existing["id"], existing["occurrences"], cat)
return existing["id"]
iid = f"inc_{sig[:8]}_{now_ms % 100000:05x}"
incident: dict[str, Any] = {
"id": iid,
"signature": sig,
"task_id": task_id[:64],
"goal": goal[:300],
"error": error[:500],
"category": cat,
"root_cause": rc,
"source": source,
"status": "open",
"occurrences": 1,
"first_seen": now_ms,
"last_seen": now_ms,
"created_at": now_ms,
"updated_at": now_ms,
"resolved_at": None,
}
_incidents[iid] = incident
asyncio.create_task(_sb_save(incident)).add_done_callback(
lambda t: logger.debug("_sb_save/new exc: %s", t.exception())
if not t.cancelled() and t.exception() is not None else None
)
logger.info("New incident %s: [%s] %s", iid, cat, goal[:60])
return iid
except Exception as _e:
logger.debug("log_incident error: %s", _e)
return ""
def resolve_incident(incident_id: str) -> bool:
inc = _incidents.get(incident_id)
if not inc or inc.get("status") != "open":
return False
now_ms = int(time.time() * 1000)
inc.update({"status": "resolved", "resolved_at": now_ms, "updated_at": now_ms})
asyncio.create_task(_sb_save(inc)).add_done_callback(_log_bg_inc).add_done_callback(
lambda t: logger.debug("_sb_save/resolve exc: %s", t.exception())
if not t.cancelled() and t.exception() is not None else None
)
return True
def get_open() -> list[dict]:
return sorted(
[i for i in _incidents.values() if i.get("status") == "open"],
key=lambda x: x["last_seen"], reverse=True,
)
def get_delta(since_ms: int) -> list[dict]:
"""Vista delta-only (GAP-A7): solo incidenti cambiati dopo since_ms."""
return sorted(
[i for i in _incidents.values() if i.get("updated_at", 0) > since_ms],
key=lambda x: x["updated_at"], reverse=True,
)
# βββ Supabase persistence (agent_memory, category='incident') βββββββββββββββββ
async def _sb_save(incident: dict) -> None:
try:
from .state import _sb
if not _sb:
return
now = int(time.time() * 1000)
await asyncio.to_thread(
lambda: _sb.table("agent_memory").upsert(
{"key": f"inc:{incident['id']}", "category": "incident",
"value": json.dumps(incident, ensure_ascii=False)[:7000],
"created_at": now, "updated_at": now},
on_conflict="key",
).execute()
)
except Exception as exc:
logger.debug("incident _sb_save: %s", exc)
async def _sb_load() -> None:
try:
from .state import _sb
if not _sb:
return
result = await asyncio.to_thread(
lambda: _sb.table("agent_memory").select("key,value")
.eq("category", "incident").execute()
)
for row in (result.data or []):
try:
inc = json.loads(row["value"])
if isinstance(inc, dict) and "id" in inc:
_incidents.setdefault(inc["id"], inc)
except Exception as _exc:
_logger.debug("[incident_registry] silenced %s", type(_exc).__name__) # noqa: BLE001
logger.info("Incident registry: caricati %d incidenti da Supabase", len(_incidents))
except Exception as exc:
logger.warning("Incident registry Supabase load fallito: %s", exc)
def start_incident_registry() -> None:
"""Avvia il registry (carica da Supabase). Chiamato in _on_startup() di main.py."""
try:
loop = asyncio.get_event_loop()
if loop.is_running():
# BUGFIX: eccezioni del task background erano perse silenziosamente
def _log_bg_inc(t):
if not t.cancelled() and t.exception():
_logger.warning("[incident_registry] bg task raised: %s", t.exception())
asyncio.create_task(_sb_load()).add_done_callback(_log_bg_inc)
except Exception as exc:
logger.warning("Incident registry start: %s", exc)
# βββ REST Endpoints ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class _IncidentCreate(BaseModel):
task_id: str = "manual"
goal: str = ""
error: str = ""
source: str = "manual"
class _IncidentPatch(BaseModel):
status: Optional[str] = None # "resolved" | "suppressed"
@router.get("")
async def list_incidents() -> list[dict]:
"""Lista incidenti aperti, ordinati per last_seen desc."""
return get_open()
@router.get("/delta")
async def incidents_delta(since_ms: int = 0) -> list[dict]:
"""Delta-only: incidenti cambiati dopo since_ms. Usare per polling incrementale."""
return get_delta(since_ms)
@router.get("/summary")
async def incidents_summary() -> dict:
"""Riepilogo rapido: totale, per categoria, aperti vs risolti."""
by_cat: dict[str, int] = {}
open_n = resolved_n = 0
for inc in _incidents.values():
cat = inc.get("category", "internal")
by_cat[cat] = by_cat.get(cat, 0) + 1
if inc.get("status") == "open":
open_n += 1
else:
resolved_n += 1
return {"total": len(_incidents), "open": open_n, "resolved": resolved_n, "by_category": by_cat}
@router.post("", status_code=201)
async def create_incident_endpoint(body: _IncidentCreate) -> dict:
iid = await log_incident(body.task_id, body.goal, body.error, body.source)
return _incidents.get(iid, {"id": iid})
@router.patch("/{incident_id}/resolve", status_code=200)
async def resolve_endpoint(incident_id: str) -> dict:
ok = resolve_incident(incident_id)
if not ok:
raise HTTPException(404, f"Incidente {incident_id} non trovato o giΓ risolto")
return _incidents[incident_id]
@router.patch("/{incident_id}/suppress", status_code=200)
async def suppress_endpoint(incident_id: str) -> dict:
"""Sopprime un incidente (non mostrarlo piΓΉ ma non perderlo)."""
inc = _incidents.get(incident_id)
if not inc:
raise HTTPException(404, f"Incidente {incident_id} non trovato")
now_ms = int(time.time() * 1000)
inc.update({"status": "suppressed", "updated_at": now_ms})
asyncio.create_task(_sb_save(inc))
return inc
|