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