ACSCallAutomationMediaSummary 表的查询

有关在 Azure 门户中使用这些查询的信息,请参阅 Log Analytics 教程。 有关 REST API,请参阅查询

循环播放成功率

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

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