Share via


ACSCallAutomationIncomingOperations テーブルのクエリ

オートメーション操作の呼び出し

呼び出し自動化操作とバージョン ペアのすべての個別の組み合わせを返します。

ACSCallAutomationIncomingOperations
| distinct OperationName, OperationVersion 
| limit 100

呼び出し自動化操作の期間パーセンタイルを計算する

呼び出し自動化操作ごとに、実行時間の 90 番目、95 番目、および 99 番目のパーセンタイルをミリ秒単位で計算します。 1 つの操作または他のパーセンタイルに対して実行するようにカスタマイズできます。

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

コール オートメーション操作あたり上位 5 個の IP アドレス

呼び出し自動化操作ごとに、その操作を最も多く呼び出した 5 つの IP アドレスをフェッチします。

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

コール オートメーションの操作エラー

すべての呼び出し自動化エラーを順に一覧表示します。

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

オートメーション操作の結果カウントを呼び出す

呼び出し自動化操作ごとに、返される結果の種類をカウントします。

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

通話接続 ID の Automation ログを呼び出す

特定の呼び出し接続 ID に対して Call Automation ログを照会します。

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

呼び出しに対する Automation API 操作の呼び出し

特定の呼び出し (関連付け ID) のすべての Call Automation API 操作とバージョン ペアを返します。

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

CallAutomation API 呼び出しの CallDiagnostics ログ

関連付け ID を使用して Call Automation API によって対話された呼び出しについて、診断 ログに対してクエリを実行します。

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

CallAutomation API 呼び出しの CallSummary ログ

関連付け ID を使用して Call Automation API によって対話された呼び出しの概要ログを照会します。

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