Share via


Abfragen für die Tabelle ACSCallAutomationIncomingOperations

Vorgänge zur Anrufautomatisierung

Gibt alle unterschiedlichen Kombinationen von Aufrufautomatisierungsvorgängen und Versionspaaren zurück.

ACSCallAutomationIncomingOperations
| distinct OperationName, OperationVersion 
| limit 100

Berechnen der Dauer von Call Automation-Vorgängen

Berechnet die 90., 95. und 99. Perzentile der Ausführungsdauer in Millisekunden für jeden Aufrufautomatisierungsvorgang. Sie kann so angepasst werden, dass sie für einen einzelnen Vorgang oder für andere Perzentilen ausgeführt werden kann.

ACSCallAutomationIncomingOperations
// where OperationName == "<operation>" // This can be uncommented and specified to calculate only a single operation's duration percentiles
| summarize percentiles(DurationMs, 90, 95, 99) by OperationName, OperationVersion // calculate 90th, 95th, and 99th percentiles of each Operation
| limit 100

Top 5 IP-Adressen pro Anrufautomatisierungsvorgang

Rufen Sie für jeden Aufrufautomatisierungsvorgang die 5 IP-Adressen ab, die diesen Vorgang am häufigsten aufgerufen haben.

ACSCallAutomationIncomingOperations
// | where OperationName == "<operation>" // This can be uncommented and specified to calculate only a single operation's count
| top-nested of OperationName by dummy=max(0), // For all the Operations...
  top-nested 5 of CallerIpAddress by count() // List the IP address that have called that operation the most
| project-away dummy // Remove dummy line from the result set
| limit 100

Betriebsfehler bei Der Anrufautomatisierung

Listet jeden Aufrufautomatisierungsfehler auf, der nach Rezensenz sortiert ist.

ACSCallAutomationIncomingOperations
| where ResultType == "Failed"
| project TimeGenerated, OperationName, OperationVersion, ResultSignature
| order by TimeGenerated desc
| limit 100

Ergebnisanzahl des Aufrufautomatisierungsvorgangs

Zählen Sie für jeden Aufrufautomatisierungsvorgang die Typen der zurückgegebenen Ergebnisse.

ACSCallAutomationIncomingOperations
| summarize Count = count() by OperationName, ResultType //, ResultSignature // This can also be uncommented to determine the count of each ResultSignature for each ResultType 
| order by OperationName asc, Count desc
| limit 100

Anrufautomatisierungsprotokolle für die Anrufverbindungs-ID

Fragt Anrufautomatisierungsprotokolle nach einer bestimmten Anrufverbindungs-ID ab.

ACSCallAutomationIncomingOperations
//| where CallConnectionId == "<callConnectionId>" // This can be uncommented to filter on a specific call connection ID
| limit 100

Aufrufen von Automatisierungs-API-Vorgängen für einen Aufruf

Gibt alle Aufrufautomatisierungs-API-Vorgänge und Versionspaare für einen bestimmten Aufruf (Korrelations-ID) zurück.

ACSCallAutomationIncomingOperations
//| where CorrelationId == "<correlation ID>" // This can be uncommented to filter on a specific correlation ID
| project CorrelationId, OperationName, OperationVersion
| limit 100

CallDiagnostics-Protokoll für callAutomation-API-Aufruf

Fragt das Diagnose-Protokoll nach einem Aufruf ab, mit dem die Anrufautomatisierungs-API mithilfe der Korrelations-ID interagiert wurde.

ACSCallAutomationIncomingOperations 
//| where CorrelationId == "<correlation ID>" // This can be uncommented to filter on a specific correlation ID
| join kind=inner
    (ACSCallDiagnostics)
    on CorrelationId
| limit 100

CallSummary-Protokoll für CallAutomation-API-Aufruf

Fragt das Zusammenfassungsprotokoll nach einem Aufruf ab, mit dem die Anrufautomatisierungs-API mithilfe der Korrelations-ID interagiert wurde.

ACSCallAutomationIncomingOperations 
//| where CorrelationId == "<correlation ID>" // This can be uncommented to filter on a specific correlation ID
| join kind=inner
    (ACSCallSummary)
    on CorrelationId
| limit 100