Zapytania dotyczące tabeli ContainerImageInventory

Spis obrazów

Listy wszystkich obrazów kontenera ze stanem.

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

Znajdź w kontenerImageInventory

Znajdź w kontenerimageInventory, 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