次の方法で共有


ACSRoomsIncomingOperations テーブルのクエリ

会議室の操作エラー

リスト ルーム エラーを順に並べ替えて表示します。

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

会議室操作の結果の数

ルーム操作ごとに、返される結果の種類をカウントします。

ACSRoomsIncomingOperations
| summarize Count = count() by OperationName, OperationVersion, ResultType, ResultSignature
| order by OperationName asc, Count desc

会議室の操作の概要

操作バージョン 2024-04-15 の参加者数などの会議室プロパティの平均統計。

ACSRoomsIncomingOperations
// where OperationName == "<operation>" // This can be uncommented and specified to calculate only a single operation's duration percentiles
| where OperationVersion == "2024-04-15" 
| summarize TotalRoomCount = dcount(RoomId),
            AvgAddedParticipantsCount = avg(AddedRoomParticipantsCount),
            AvgRemovedParticipantsCount = avg(RemovedRoomParticipantsCount),
            AvgUpsertedParticipantsCount = avg(UpsertedRoomParticipantsCount),
            AvgRoomLifespan = avg(RoomLifespan),
            SumPstnDialoutEnabled=countif(PstnDialOutEnabled==1)