VIAudit tablosu için sorgular

Azure portalında bu sorguları kullanma hakkında bilgi için bkz . Log Analytics öğreticisi. REST API için bkz . Sorgu.

Hesap kimliğine göre Video Indexer Denetimi

Hesabın denetim olaylarını (AccountId = <Guid Kimliği>) kullanıcı UPN'sinin isteğe bağlı filtresiyle görüntüleyin.

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

Video Indexer İşlemlere göre ilk 10 kullanıcıyı denetleme

İlk 10 kullanıcının zaman çizelgesini filtreleme için isteğe bağlı bir hesap kimliğiyle işlemlere göre işleyin.

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

Video Indexer Denetimi ayrıştırılmış hata iletisi

Filtreleme için isteğe bağlı bir hesap kimliğiyle başarısız olan denetim olaylarını görüntüleyin.

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

Video Indexer Denetimi başarısız işlemler

Hesap kimliğine ve kullanıcı UPN'sine göre isteğe bağlı bir filtre ile tüm başarısız işlem girişimlerinin denetim günlüklerini görüntüleyin.

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