次の方法で共有


ContainerNodeInventory テーブルへのクエリ

これらのクエリを Azure portal で使用する方法については、「Log Analytics のチュートリアル」を参照してください。 REST API については、「 Query」を参照してください。

ContainerNodeInventory 内で検索する

結果を作り出すためにこのクエリで <SeachValue> パラメーターを更新する必要がある ContainerNodeInventory table./nNote の中の特定の値を検索するため、ContainerNodeInventory 内で検索する

// This query requires a parameter to run. Enter value in SearchValue to find in table.
let SearchValue =  "<SearchValue>";//Please update term you would like to find in the table.
ContainerNodeInventory
| where * contains tostring(SearchValue)
| take 1000