ACSAdvancedMessagingOperations テーブルのクエリ

Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。

高度なメッセージング操作

高度なメッセージング操作とバージョンのペアのすべての個別の組み合わせを返します。

ACSAdvancedMessagingOperations
| distinct OperationName, OperationVersion 
| limit 100

高度なメッセージング操作の期間のパーセンタイル

各チャット操作の実行時間の 90 パーセンタイル、95 パーセンタイル、および 99 パーセンタイルをミリ秒単位で計算します。 1 回の操作または他のパーセンタイルに対して実行するようにカスタマイズできます。

ACSAdvancedMessagingOperations
// 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

Advanced Messaging top 5 IP addresses per operation

高度なメッセージング操作ごとに、その操作を最も多く呼び出した 5 つの IP アドレスをフェッチします。

ACSAdvancedMessagingOperations
// | 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

高度なメッセージング操作エラー

高度なメッセージング エラーを順に並べ替え、一覧表示します。

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

高度なメッセージング操作の結果の数

すべての高度なメッセージング操作について、返された結果の種類をカウントします。

ACSAdvancedMessagingOperations
| summarize Count = count() by OperationName, OperationVersion, 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

高度なメッセージング チャネル アクティビティ

過去 24 時間のチャネルごとのメッセージ アクティビティの概要。

ACSAdvancedMessagingOperations
| where TimeGenerated > ago(24h)
| summarize count() by ChannelId, MessageType
| order by ChannelId asc

高度なメッセージング メッセージの状態の数

過去 24 時間のメッセージの状態の数。

ACSAdvancedMessagingOperations
| where TimeGenerated > ago(24h)
| summarize Count = count() by MessageType, MessageStatus
| order by MessageType asc, Count desc