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)