你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
ACSRoomsIncomingOperations 表的查询
有关在Azure 门户中使用这些查询的信息,请参阅 Log Analytics 教程。 有关 REST API,请参阅 查询。
会议室操作错误
按宽度排序的列表会议室错误。
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)