【发布时间】:2021-06-30 20:06:10
【问题描述】:
从 Azure 门户虚拟机刀片中,我可以单击“打开查询”按钮,它将在 Azure Graph Explorer 中打开 Kusto Graph 查询。我已经剖析了大部分查询,我相信我理解了其中的大部分。我无法弄清楚的一件事是“数据”表在此连接中的来源:
| 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'
它稍后会在不同的连接中再次执行此操作。这是一些 Kusto 占位符表吗? “数据”有什么意义?
【问题讨论】:
标签: azure azure-data-explorer kql