AMSStreamingEndpointRequests 數據表的查詢
如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
用戶端IP的串流端點成功要求計數
摘要說明不同用戶端IP成功串流端點要求的計數。
AMSStreamingEndpointRequests
| where Status == "200"
| summarize Count = count() by ClientIP
串流端點資訊要求
列出記錄層級等於資訊之串流端點要求的詳細數據。
AMSStreamingEndpointRequests
| where Level == "Informational"
| project _ResourceId, ClientIP, URL
| limit 100