remove monitoring

This commit is contained in:
jxxghp
2025-09-04 11:23:22 +08:00
parent 48aeb98bf1
commit 89b0ea0bf1
9 changed files with 3 additions and 1047 deletions
-4
View File
@@ -3,7 +3,6 @@ from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import ORJSONResponse
from app.core.config import settings
from app.monitoring import setup_prometheus_metrics
from app.startup.lifecycle import lifespan
@@ -27,9 +26,6 @@ def create_app() -> FastAPI:
allow_headers=["*"],
)
# 设置性能监控
setup_prometheus_metrics(_app)
return _app