|
@@ -36,7 +36,7 @@ app = FastAPI()
|
|
|
|
|
|
# 服务监控,qps,latent, cpu利用率
|
|
|
Instrumentator().instrument(app).expose(app)
|
|
|
-from util.registry import AI_BOT_REQUEST_LATENCY
|
|
|
+from util.registry import AI_BOT_REQUEST_LATENCY, AI_BOT_REQUEST_COUNT
|
|
|
|
|
|
|
|
|
@app.post("/botservice")
|
|
@@ -90,6 +90,7 @@ def botservice(reqbot:reqRobot):
|
|
|
finally:
|
|
|
latency = (time.time() - start_time)
|
|
|
print(f"Latency for {bid}: {latency}") # 日志记录
|
|
|
+ AI_BOT_REQUEST_COUNT.inc()
|
|
|
AI_BOT_REQUEST_LATENCY.labels(bid=bid).observe(latency)
|
|
|
|
|
|
|