Consultas para a tabela ContainerImageInventory
Para obter informações sobre como usar essas consultas no portal do Azure, consulte o tutorial do Log Analytics. Para a API REST, consulte Consulta.
Inventário de imagens
Lista toda a imagem de contêiner com seu status.
ContainerImageInventory
| summarize AggregatedValue = count() by Image, ImageTag, Running, _ResourceId
Localizar em ContainerImageInventory
Encontre em ContainerImageInventory para procurar um valor específico na tabela ContainerImageInventory./nObserve que essa 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