简体   繁体   English

这个 Azure Graph Kusto 中的“数据”表来自哪里?

[英]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.在 Azure 门户虚拟机边栏选项卡中,我可以单击“打开查询”按钮,它将在 Azure 图形资源管理器中打开一个 Kusto Graph 查询。 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?这是一些 Kusto 占位符表吗? What is the significance of 'data'? “数据”的意义何在?

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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