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