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