Share via


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