Dotazy na tabulku ContainerNodeInventory

Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.

Najít v ContainerNodeInventory

Vyhledejte v ContainerNodeInventory konkrétní hodnotu v tabulce ContainerNodeInventory./nNote, kterou tento dotaz vyžaduje aktualizaci parametru <SeachValue> za účelem vytvoření výsledků.

// 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