Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.
Summarizes the count of successful key delivery requests by different key types.
AMSKeyDeliveryRequests
| where ResultType == "Succeeded"
| summarize Count = count() by KeyType
Lists the details of failed key delivery requests.
AMSKeyDeliveryRequests
| where ResultType != "Succeeded"
| project KeyId, PolicyName, ResultSignature, StatusMessage, _ResourceId
| limit 100
Estimates the key delivery requests latency at 95th and 99th percentiles.
AMSKeyDeliveryRequests
| summarize percentiles(DurationMs, 95, 99)