|
@@ -25,6 +25,7 @@ from entity import Error
|
|
|
import traceback
|
|
|
from util import insert_log, timetic
|
|
|
from prometheus_fastapi_instrumentator import Instrumentator
|
|
|
+from util.registry import request_latency
|
|
|
|
|
|
import time
|
|
|
|
|
@@ -35,8 +36,10 @@ logger=get_logger("log")
|
|
|
app = FastAPI()
|
|
|
|
|
|
# 服务监控,qps,latent, cpu利用率
|
|
|
-Instrumentator().instrument(app).expose(app)
|
|
|
-from util.registry import AI_BOT_REQUEST_LATENCY
|
|
|
+@app.on_event("startup")
|
|
|
+async def startup_event():
|
|
|
+ Instrumentator().instrument(app).expose(app)
|
|
|
+
|
|
|
|
|
|
|
|
|
@app.post("/botservice")
|
|
@@ -90,7 +93,7 @@ def botservice(reqbot:reqRobot):
|
|
|
finally:
|
|
|
latency = (time.time() - start_time)
|
|
|
print(f"Latency for {bid}: {latency}") # 日志记录
|
|
|
- AI_BOT_REQUEST_LATENCY.labels(bid=bid).observe(latency)
|
|
|
+ request_latency.observe(latency)
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|