DavidLiu před 3 měsíci
rodič
revize
70820a3c5c

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

@@ -71,7 +71,7 @@ class ChannelHangupHandler(EslEventHandler):
 
             device_info.hangup_cause = cause
             device_info.sip_protocol = sip_protocol
-            device_info.sip_status = sip_status
+            device_info.sip_status = sip_status if sip_status else "EMPTY"
             device_info.channel_name = channel_name
             device_info.end_time = timestamp
 
@@ -112,7 +112,7 @@ class ChannelHangupHandler(EslEventHandler):
 
             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()
+                registry.CALL_BOT_HANGUP_REQUESTS.labels(f"{call_info.bucket_type}", f"{device_info.sip_status}").inc()
 
             # 全部挂机以后推送挂机状态
             # self.logger.info('yushanghui::call_info.device_list %s', call_info.device_list)