shanghui 3 месяцев назад
Родитель
Сommit
c1ff4b137a
3 измененных файлов с 4 добавлено и 2 удалено
  1. 1 1
      src/core/callcenter/registry.py
  2. 2 1
      src/core/voip/asr.py
  3. 1 0
      src/core/voip/bot.py

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

@@ -20,7 +20,7 @@ CALL_BOT_HANGUP_REQUESTS = Counter('call_bot_hangup_requests', '机器挂机量'
 BOT_REQUEST_COUNT = Counter('bot_request_count',  'Total number of bot requests')
 BOT_ASR_408 = Counter('bot_asr_408', 'ASR408 超时次数',['taskId'])
 
-
+ASR_ERRORS = Counter( 'asr_error_codes', 'Count of ASR error codes', ['errorCode'])
 
 
 # esl时间耗时

+ 2 - 1
src/core/voip/asr.py

@@ -144,7 +144,8 @@ class TestSt:
 
     def test_on_error(self, message, *args):
         # print("on_error args=>{}".format(args))
-        pass
+        if self.message_receiver:
+            self.message_receiver(message, *args)
 
     def test_on_close(self, *args):
         # print("on_close: args=>{}".format(args))

+ 1 - 0
src/core/voip/bot.py

@@ -335,6 +335,7 @@ class MyCall(pj.Call):
                 self.reset_wait_time()
         else:
             self.logger.info(f"Status is not {message['header']['status']}")
+            registry.ASR_ERRORS.labels(message['header']['status']).inc()