Delen via


Query's voor de tabel ACSRoomsIncomingOperations

Operationele fouten in ruimten

Geef een lijst weer op basis van de fout in ruimten op basis van de actualiteit.

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

Aantal bewerkingsresultaten van ruimten

Tel voor elke ruimtebewerking 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)