استعلامات لجدول VIAudit
للحصول على معلومات حول استخدام هذه الاستعلامات في مدخل Microsoft Azure، راجع البرنامج التعليمي Log Analytics. للحصول على واجهة برمجة تطبيقات REST، راجع الاستعلام.
تدقيق مفهرس الفيديو حسب معرف الحساب
عرض أحداث التدقيق للحساب (AccountId = <معرف> Guid)، مع عامل تصفية اختياري بواسطة UPN للمستخدم.
VIAudit
| where AccountId == "<AccountId>" // please fill in the accountId <Guid>
// | where Upn == "<Upn>" // to to filter on a specific user upn, uncomment this line
| limit 100
أفضل 10 مستخدمين حسب العمليات في Video Indexer Audit
عرض المخطط الزمني لأهم 10 مستخدمين حسب العمليات، مع معرف حساب اختياري للتصفية.
// Trend of top 10 active Upn's
VIAudit
// | where AccountId == "<AccountId>" // to filter on a specific accountId, uncomment this line
| where TimeGenerated > ago(30d)
| summarize count() by Upn
| top 10 by count_ desc
| project Upn
| join (VIAudit
| where TimeGenerated > ago(30d)
| summarize count() by Upn, bin(TimeGenerated,1d)) on Upn
| project TimeGenerated, Upn, count_
| render timechart
رسالة خطأ محلل تدقيق مفهرس الفيديو
عرض أحداث فشل التدقيق باستخدام معرف حساب اختياري للتصفية.
// Project failures with detailed error message.
VIAudit
// | where AccountId == "<AccountId>" // to filter on a specific accountId, uncomment this line
| where Status == "Failure"
| parse Description with "ErrorType: " ErrorType ". Message: " ErrorMessage ". Trace" *
| project TimeGenerated, OperationName, ErrorMessage, ErrorType, CorrelationId, _ResourceId
فشل عمليات تدقيق مفهرس الفيديو
عرض سجلات التدقيق لجميع محاولات العمليات الفاشلة، مع عامل تصفية اختياري حسب معرف الحساب و UPN للمستخدم.
VIAudit
// | where AccountId == "<AccountId>" // to filter on a specific accountId, uncomment this line
// | where Upn == "<Upn>" // to to filter on a specific user upn, uncomment this line
| where Status == "Failure"
| limit 100