Queries for the AMSStreamingEndpointRequests table

For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.

Streaming endpoint successful request count by client IP

Summarizes the count of successful streaming endpoint requests by different client IPs.

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

Streaming endpoint informational requests

Lists details of streaming endpoint requests with log level equal to informational.

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