Condividi tramite


Query per la tabella ContainerNodeInventory

Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.

Trovare in ContainerNodeInventory

Trovare in ContainerNodeInventory per cercare un valore specifico nella tabella ContainerNodeInventory./nNote che questa query richiede l'aggiornamento del <parametro SeachValue> per produrre risultati

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