Condividi tramite


Query per la tabella AACAudit

Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.

Operazioni di eliminazione chiave-valore più recenti

Elencare le operazioni di eliminazione chiave-valore più recenti nel piano dati di Configurazione app.

// This query helps retrieve the most recent 10 audit logs for deleting key-value operations in App Configuration data plane.
AACAudit
| where EventCategory == "ApplicationManagement" and OperationName == "delete-keyvalue"
| where TimeGenerated > ago(1h)
| sort by TimeGenerated desc
| limit 10

Errore client più recente

Elenca gli errori più recenti a causa dell'errore del client.

// This query helps list the most recent 10 audit logs for failures because of client error. 
AACAudit
| where ResultType == "ClientError" and TimeGenerated > ago(1h)
| sort by TimeGenerated desc
| limit 10