AMSStreamingEndpointRequests 表的查询

按客户端 IP 统计的流式处理终结点成功请求计数

汇总不同客户端 IP 成功流式处理终结点请求的计数。

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

流式处理终结点信息请求

Lists日志级别等于信息性的流式处理终结点请求的详细信息。

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