feat: metrics

This commit is contained in:
2025-09-29 09:23:08 -04:00
parent 8b130deec6
commit ba0eed0daf
7 changed files with 2001 additions and 1 deletions
+5 -1
View File
@@ -867,4 +867,8 @@ def register_routes(app, dependencies: dict):
@app.get("/debug/tmdb/{imdb_id}")
async def _debug_tmdb_lookup(imdb_id: str):
return await debug_tmdb_lookup(imdb_id, dependencies)
return await debug_tmdb_lookup(imdb_id, dependencies)
# Include monitoring routes
from api.monitoring_routes import router as monitoring_router
app.include_router(monitoring_router)