Share via


Abfragen für die TABELLE "ACSCallAutomationMediaSummary"

Erfolgsquote der Schleife

Berechnet die Anzahl der Erfolge und Fehler des Wiedergabevorgangs, wenn er in Schleife wiedergegeben wird oder nicht.

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

Erfolgsquote von "Play to"-Teilnehmern

Berechnet die Anzahl der Erfolge und Fehler des Spielvorgangs, wenn er für einen Teilnehmer oder für alle wiedergegeben wird.

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

Erkennen der Erfolgsquote

Berechnet die Anzahl der Erfolge und Fehler des Erkennungsvorgangs.

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

Erfolgsquote nach Untervorgangsname

Berechnet die Anzahl der Erfolge und Fehler des Erkennungsvorgangs basierend auf dem Namen des Untervorgangs.

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