Query per la tabella AMSStreamingEndpointRequests

Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.

Numero di richieste riuscite dell'endpoint di streaming per IP client

Riepiloga il numero di richieste di endpoint di streaming riuscite da indirizzi IP client diversi.

AMSStreamingEndpointRequests
| where Status == "200"
| summarize Count = count() by ClientIP

Richieste informative sugli endpoint di streaming

Elenca i dettagli delle richieste di endpoint di streaming con livello di log uguale a quello informativo.

AMSStreamingEndpointRequests
| where Level == "Informational"
| project _ResourceId, ClientIP, URL
| limit 100