clearlydefined / operations

Operational documentation and tools
3 stars 10 forks source link

Triage Service exceptions: connectivity issues ECONNRESET (/definitions) #32

Open grvillic opened 4 years ago

grvillic commented 4 years ago
requests 
| where resultCode == 500
| join (
 exceptions
 ) on operation_Id 
| extend pathPrefix = extract("/(\\w+)", 0, tostring(operation_Name))
| summarize count() by  outerMessage, pathPrefix
| order by count_  desc 
| where outerMessage contains "ECONNRESET"
jeffmendoza commented 4 years ago

Example request

SvcRequestFailure: /definitions?pattern=xom+1.2.10&minDescribedScore=80

First pass triage: Requests look valid, not sure if this is an Azure search issue, or a case where we should be retrying.

Needs further investigation to determine a good path.