共用方式為


ContainerImageInventory 數據表的查詢

如需在 Azure 入口網站 中使用這些查詢的相關信息,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢

影像清查

列出所有容器映像及其狀態。

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

在 ContainerImageInventory 中尋找

在 ContainerImageInventory 中尋找以搜尋 ContainerImageInventory 數據表中的特定值。/n請注意,此查詢需要更新 <SeachValue> 參數以產生結果

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