ACSCallAutomationMediaSummary 表的查询

循环播放成功率

计算循环播放或未循环播放时播放操作的成功和失败次数。

ACSCallAutomationMediaSummary
| where OperationName == "Play"
| summarize playedInLoopCount=count() by PlayInLoop, ResultType

播放到参与者的成功率

计算对参与者或所有参与者播放时播放操作的成功和失败次数。

ACSCallAutomationMediaSummary
| where OperationName == "Play"
| summarize playedToCount=count() by PlayToParticipant, ResultType

识别成功率

计算识别操作的成功和失败次数。

ACSCallAutomationMediaSummary
| where OperationName == "Recognize"
| summarize recognizeCount=count() by ResultType

按子操作名称显示的成功率

根据识别操作的子操作名称计算成功和失败次数。

ACSCallAutomationIncomingOperations
| join ACSCallAutomationMediaSummary on OperationId
| where OperationName == "Recognize"
| summarize recognizeCount=count() by SubOperationName, ResultType1
| project SubOperationName, EventResultType = ResultType1, recognizeCount