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

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

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

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

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