AACAudit 테이블에 대한 쿼리
Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.
가장 최근의 키-값 삭제 작업
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
가장 최근의 클라이언트 오류
클라이언트 오류로 인한 가장 최근의 오류를 나열합니다.
// 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