Query's voor de tabel ACSRoomsIncomingOperations
Zie de zelfstudie over Log Analytics voor meer informatie over het gebruik van deze query's in Azure Portal. Zie Query voor de REST API.
Operationele fouten in ruimten
Lijst van ruimten fout gesorteerd op recency.
ACSRoomsIncomingOperations
| where ResultType == "Failed"
| project TimeGenerated, OperationName, OperationVersion, ResultSignature
| order by TimeGenerated desc
| limit 100
Aantal resultaatresultaten van ruimten
Tel voor elke bewerking van ruimten de typen geretourneerde resultaten.
ACSRoomsIncomingOperations
| summarize Count = count() by OperationName, OperationVersion, ResultType, ResultSignature
| order by OperationName asc, Count desc
Samenvatting van de bewerking van ruimten
De gemiddelde statistieken van ruimte-eigenschappen zoals deelnemers tellen voor bewerkingsversie 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)