Delen via


Query's voor de tabel VIAudit

Zie de zelfstudie over Log Analytics voor meer informatie over het gebruik van deze query's in Azure Portal. Zie Query voor de REST API.

Video Indexer Controleren op account-id

Controlegebeurtenissen weergeven voor account (AccountId = <Guid-id>), met een optioneel filter op upn van de gebruiker.

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 Top 10 gebruikers controleren op bewerkingen

Geef het tijddiagram weer van de tien belangrijkste gebruikers op bewerkingen, met een optionele account-id voor filteren.

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

Geparseerde foutbericht van Video Indexer Audit

Controle mislukte gebeurtenissen weergeven met een optionele account-id voor filteren.

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

Mislukte bewerkingen voor Video Indexer-controle

Auditlogboeken van alle mislukte bewerkingspogingen weergeven, met een optioneel filter op account-id en UPN van gebruikers.

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