Query per la tabella ACSRoomIncomingOperations
Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.
Errori operativi delle sale
Errore list rooms ordinato in base alla recency.
ACSRoomsIncomingOperations
| where ResultType == "Failed"
| project TimeGenerated, OperationName, OperationVersion, ResultSignature
| order by TimeGenerated desc
| limit 100
Conteggi dei risultati dell'operazione Rooms
Per ogni operazione room, contare i tipi di risultati restituiti.
ACSRoomsIncomingOperations
| summarize Count = count() by OperationName, OperationVersion, ResultType, ResultSignature
| order by OperationName asc, Count desc
Riepilogo dell'operazione rooms
Statistiche medie delle proprietà della sala, ad esempio il conteggio dei partecipanti per la versione dell'operazione 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)