Zapytania dotyczące tabeli ContainerImageInventory
Aby uzyskać informacje na temat korzystania z tych zapytań w witrynie Azure Portal, zobacz Samouczek usługi Log Analytics. Aby zapoznać się z interfejsem API REST, zobacz Zapytanie.
Spis obrazów
Wyświetla listę wszystkich obrazów kontenera ze stanem.
ContainerImageInventory
| summarize AggregatedValue = count() by Image, ImageTag, Running, _ResourceId
Znajdź w kontenerzeImageInventory
Znajdź w kontenerze ContainerImageInventory, aby wyszukać określoną wartość w tabeli ContainerImageInventory./nNote, że to zapytanie wymaga zaktualizowania parametru <SeachValue> w celu wygenerowania wyników
// 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