2

我正在将此参考文档用于 Application Insights。

如何使用不同查询的输出进行子选择?

//Query 1
Events 
| where  Timestamp >= ago(30min) and Data contains('SomeString')
| project TraceToken

//I would like to use the first query's output in the subselect here.
Events 
| where TraceToken in ({I would like to use the First query's output here.})

在这种情况下加入更好。哪个会有更好的表现。

4

1 回答 1

13

您可以使用let语句来实现这一点。

这是Analytics 文档中的一个示例,希望对您有所帮助:

let topCities =  toscalar ( // convert single column to value
   requests
   | summarize count() by client_City 
   | top 4 by count_ 
   | summarize makeset(client_City));
requests
| where client_City in (topCities) 
| summarize count() by client_City;

编辑:默认情况下,makeset()函数返回的最大元素数为 128。应为较大的数据集指定 MaxSetSize。

于 2017-02-15T21:14:28.277 回答