Frågor för tabellen ContainerImageInventory
Information om hur du använder dessa frågor i Azure Portal finns i Log Analytics-självstudien. Information om REST-API:et finns i Fråga.
Bildinventering
Visar en lista över alla containeravbildningar med deras status.
ContainerImageInventory
| summarize AggregatedValue = count() by Image, ImageTag, Running, _ResourceId
Sök i ContainerImageInventory
Sök i ContainerImageInventory för att söka efter ett specifikt värde i tabellen ContainerImageInventory./nNote att den här frågan kräver att seachValue-parametern> uppdateras <för att generera resultat
// 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