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

+ 2 - 1
ai-slibra-assistant/api/AiBot.py

@@ -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)
 
 

+ 2 - 0
ai-slibra-assistant/util/registry.py

@@ -3,3 +3,5 @@ from typing import Callable
 from prometheus_client import Counter,Histogram
 
 AI_BOT_REQUEST_LATENCY = Histogram('ai_bot_request_latency',  '文本机器人接口耗时',['bid'])
+
+AI_BOT_REQUEST_COUNT = Counter('ai_bot_request_count',  'Total number of bot requests')