余尚辉 3 months ago
parent
commit
6d41bbe78d
2 changed files with 4 additions and 9 deletions
  1. 3 6
      ai-slibra-assistant/api/AiBot.py
  2. 1 3
      ai-slibra-assistant/util/registry.py

+ 3 - 6
ai-slibra-assistant/api/AiBot.py

@@ -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__':

+ 1 - 3
ai-slibra-assistant/util/registry.py

@@ -2,6 +2,4 @@
 from typing import Callable
 from prometheus_client import Counter,Histogram
 
-# AI_BOT_REQUEST_LATENCY = Histogram('ai_bot_request_latency',  '文本机器人接口耗时',['bid'])
-
-request_latency = Histogram("request_latency_seconds", "Request latency in seconds")
+AI_BOT_REQUEST_LATENCY = Histogram('ai_bot_request_latency',  '文本机器人接口耗时',['bid'])