Dotazy na tabulku AACAudit
Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.
Poslední operace odstranění klíč-hodnota
Vypište seznam nejnovějších operací odstranění klíč-hodnota v rovině dat konfigurace aplikace.
// 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
Poslední chyba klienta
Uvádí seznam nejnovějších selhání z důvodu chyby klienta.
// 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