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

Popular posts from this blog

gemini cli getting file not defined error

NodeJS: Error: spawn EINVAL in window for node version 20.20 and 18.20

vllm : Failed to infer device type