keyvault checking if we hitting request limits
Resource limit can caught us by surprise. So it is always handy to be able to have a script that we can run to see how things are going
AzureDiagnostics
| where ResourceType == "VAULTS"
| summarize count() by bin(TimeGenerated, 10s), OperationName
To check for trottling
AzureDiagnostics
| where ResourceType == "VAULTS"
| where ResultType == "429"
Or to have a more global view
AzureDiagnostics
| where ResultType == "429"
| summarize Throttles = count() by Resource
Comments