簡體   English   中英

這個 Azure Graph Kusto 中的“數據”表來自哪里?

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

在 Azure 門戶虛擬機邊欄選項卡中,我可以單擊“打開查詢”按鈕,它將在 Azure 圖形資源管理器中打開一個 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 占位符表嗎? “數據”的意義何在?

沒有 Kusto 占位符表,因此這必須是名為data的數據庫中的真實表或函數。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM