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.
Summarizes the count of successful streaming endpoint requests by different client IPs.
AMSStreamingEndpointRequests
| where Status == "200"
| summarize Count = count() by ClientIP
Lists details of streaming endpoint requests with log level equal to informational.
AMSStreamingEndpointRequests
| where Level == "Informational"
| project _ResourceId, ClientIP, URL
| limit 100