Dela via


Frågor för tabellen VIAudit

Video Indexer-granskning efter konto-ID

Visa granskningshändelser för kontot (AccountId = <Guid-ID>) med ett valfritt filter efter användarens 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

Video Indexer Granska de 10 främsta användarna efter åtgärder

Rendera tidsschema för de 10 främsta användarna efter åtgärder, med ett valfritt konto-ID för filtrering.

// 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 Granska tolkat felmeddelande

Visa granskningshändelser som misslyckats med ett valfritt konto-ID för filtrering.

// 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 Audit-misslyckade åtgärder

Visa granskningsloggar för alla misslyckade åtgärdsförsök, med ett valfritt filter efter konto-ID och användar-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