Share via


Az ACSCallAutomationIncomingOperations tábla lekérdezései

Automation-műveletek hívása

A hívásautomatizálási művelet és a verziópárok összes különböző kombinációját adja vissza.

ACSCallAutomationIncomingOperations
| distinct OperationName, OperationVersion 
| limit 100

Hívásautomatizálási művelet időtartamának percentiliseinek kiszámítása

A futtatási időtartam 90., 95. és 99. percentiliseit számítja ki ezredmásodpercben minden hívásautomatizálási művelethez. Testre szabható, hogy egyetlen művelethez vagy más percentilisekhez fusson.

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

Az 5 legjobb IP-cím hívásautomatizálási műveletenként

Minden hívásautomatizálási művelethez kérje le az 5 IP-címet, amelyek ezt a műveletet a legjobban meghívták.

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

Az Automation működési hibáinak hívása

Listázz minden hívásautomatizálási hibát, amelyet a rendszer a megfelelőség alapján rendez.

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

Az Automation-művelet eredményének száma

Minden hívásautomatizálási művelethez megszámolja a visszaadott eredmények típusait.

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

Hívásautomatizálási naplók híváskapcsolat-azonosítóhoz

Lekérdezések: Hívásautomatizálási naplók egy adott híváskapcsolat-azonosítóhoz.

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

Automation API-műveletek hívása hívás közben

Visszaadja az összes Call Automation API-műveletet és verziópárt egy adott híváshoz (korrelációs azonosító).

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

CallDiagnostics-napló a CallAutomation API-híváshoz

Lekérdezi a diagnosztikai naplót egy híváshoz, amelyet a Call Automation API korrelációs azonosítóval használt.

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 napló a CallAutomation API-híváshoz

Lekérdezi egy hívás összefoglaló naplóját, amelyet a Call Automation API korrelációs azonosítóval használt.

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