Zapytania dotyczące tabeli AACAudit
Aby uzyskać informacje na temat korzystania z tych zapytań w witrynie Azure Portal, zobacz Samouczek usługi Log Analytics. Aby zapoznać się z interfejsem API REST, zobacz Zapytanie.
Najnowsze operacje usuwania klucz-wartość
Wyświetl listę najnowszych operacji usuwania klucz-wartość na płaszczyźnie danych App Config.
// 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
Najnowszy błąd klienta
Wyświetla listę najnowszych błędów z powodu błędu 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