CloudHsmServiceOperationAuditLogs 數據表的查詢
如需在 Azure 入口網站 中使用這些查詢的相關信息,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢。
是否有任何緩慢的要求?
雲端 HSM 要求清單花費的時間超過 1 秒。
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