简体   繁体   中英

Where does the 'data' table come from in this Azure Graph Kusto?

From the Azure Portal Virtual Machines blade I can click on the "Open Query" button and it will open a Kusto Graph query in Azure Graph Explorer. I have dissected most of the query and I believe I understand most of it. One thing I can't figure out is where the 'data' table comes from in this join:

| join kind=leftouter hint.strategy=shuffle (data 
    | where type =~ 'Microsoft.Network/networkInterfaces' 
    | extend ipConfigsCount=array_length(properties.ipConfigurations) 
    | mvexpand ipconfig=properties.ipConfigurations limit 400
    | where ipConfigsCount == 1 or ipconfig.properties.primary =~ 'true' 

It does it again later in a different join. Is this some Kusto placeholder table? What is the significance of 'data'?

没有 Kusto 占位符表,因此这必须是名为data的数据库中的真实表或函数。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM