共用方式為


AMSKeyDeliveryRequests 數據表的查詢

如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢

密鑰傳遞成功要求計數,依金鑰類型

摘要說明不同金鑰類型的成功金鑰傳遞要求計數。

AMSKeyDeliveryRequests
| where ResultType == "Succeeded"
| summarize Count = count() by KeyType

金鑰傳遞失敗的要求

列出失敗金鑰傳遞要求的詳細數據。

AMSKeyDeliveryRequests
| where ResultType != "Succeeded"
| project KeyId, PolicyName, ResultSignature, StatusMessage, _ResourceId
| limit 100

95 和 99 百分位數的金鑰傳遞要求延遲

估計金鑰傳遞要求延遲為 95 和第 99 個百分位數。

AMSKeyDeliveryRequests
| summarize percentiles(DurationMs, 95, 99)