استعلامات جدول ContainerImageInventory

للحصول على معلومات حول استخدام هذه الاستعلامات في مدخل Microsoft Azure، راجع البرنامج التعليمي Log Analytics. للحصول على واجهة برمجة تطبيقات REST، راجع الاستعلام.

مخزون الصور

يسرد جميع صورة الحاوية مع حالتها.

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

البحث في ContainerImageInventory

ابحث في ContainerImageInventory للبحث عن قيمة معينة في جدول ContainerImageInventory./nNote أن هذا الاستعلام يتطلب تحديث المعلمة <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