Share via


Consultas para a tabela ContainerImageInventory

Inventário de imagens

Listas toda a imagem de contentor com o respetivo estado.

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

Localizar em ContainerImageInventory

Localize em ContainerImageInventory para procurar um valor específico na tabela ContainerImageInventory./nNote que esta consulta requer a atualização do <parâmetro SeachValue> para produzir resultados

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