CloudHsmServiceOperationAuditLogs 테이블에 대한 쿼리
Azure Portal에서 이러한 쿼리를 사용하는 방법에 대한 자세한 내용은 Log Analytics 자습서를 참조하세요. REST API는 쿼리를 참조 하세요.
느린 요청이 있나요?
1초보다 오래 걸리는 클라우드 HSM 요청 목록입니다.
let threshold=1000;
CloudHsmServiceOperationAuditLogs
| where DurationMs > threshold
| summarize count() by OperationName, _ResourceId
이 클라우드 HSM은 얼마나 활성화되었나요?
시간 경과에 따른 작업당 클라우드 HSM 요청 볼륨의 추세를 보여 주는 꺾은선형 차트입니다.
CloudHsmServiceOperationAuditLogs
| summarize count() by bin(TimeGenerated, 1h), OperationName // Aggregate by hour
| render timechart
오류가 있나요?
요청 유형별 실패한 요청 수
CloudHsmServiceOperationAuditLogs
| where ResultType == "Failure"
| summarize count() by ResultSignature, _ResourceId