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