DavidLiu 3 달 전
부모
커밋
aaaeaf8a25
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 2
      src/core/callcenter/esl/handler/channel_hangup_handler.py
  2. 1 1
      src/core/callcenter/registry.py

+ 3 - 2
src/core/callcenter/esl/handler/channel_hangup_handler.py

@@ -110,8 +110,9 @@ class ChannelHangupHandler(EslEventHandler):
                 self.call_service.hangup_all(call_info, CallCause.HANGUP_EVENT)
                 # self.inbound_client.hangup_call(call_id, device_id, CallCause.HANGUP_EVENT)
 
-            if CallType.BOT_CALL.code == call_info.call_type and device_info.device_type == DeviceType.ROBOT.code:
-                registry.CALL_BOT_HANGUP_REQUESTS.labels(f"{call_info.bucket_type}").inc()
+            if CallType.BOT_CALL.code == call_info.call_type and device_info.device_type == DeviceType.CUSTOMER.code:
+                self.release(event)
+                registry.CALL_BOT_HANGUP_REQUESTS.labels(f"{call_info.bucket_type}", f"{sip_status}").inc()
 
             # 全部挂机以后推送挂机状态
             # self.logger.info('yushanghui::call_info.device_list %s', call_info.device_list)

+ 1 - 1
src/core/callcenter/registry.py

@@ -14,7 +14,7 @@ metrics = PrometheusMetrics(app)
 CALL_INCOMING_REQUESTS = Counter('call_incoming_requests', '呼入总流量', ['bucket'])
 CALL_BOT_ANSWER_REQUESTS = Counter('call_bot_answer_requests', '机器人接听量', ['bucket'])
 CALL_BOT_TRANSFER_REQUESTS = Counter('call_bot_transfer_requests', '机器转人量', ['bucket'])
-CALL_BOT_HANGUP_REQUESTS = Counter('call_bot_hangup_requests', '机器挂机量', ['bucket'])
+CALL_BOT_HANGUP_REQUESTS = Counter('call_bot_hangup_requests', '机器挂机量', ['bucket','sip_status'])
 
 # esl时间耗时
 ESL_EVENT_LATENCY = Histogram('esl_event_latency', 'Esl Event latency in seconds', ['eventName'])