Condividi tramite


Query per la tabella ContainerImageInventory

Inventario delle immagini

Elenchi tutte le immagini del contenitore con il relativo stato.

ContainerImageInventory
| summarize AggregatedValue = count() by Image, ImageTag, Running, _ResourceId

Trova in ContainerImageInventory

Trovare in ContainerImageInventory per cercare un valore specifico nella tabella ContainerImageInventory./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.
ContainerImageInventory
| where * contains tostring(SearchValue)
| take 1000