Bryan Schmiedeler
Bryan Schmiedeler

Reputation: 3127

How to use Application Insights to find failure dependences

A recent release of our application generated many 400/500 HTTP Failures in Application Insights. Some of these failures failed because they are dependent on a previous API that failed.

enter image description here

In the image below we can see failed dependencies, but when I drill into them I cannot for the life of me find what API they are dependent on.

Any help would be greatly appreciated.

Upvotes: 0

Views: 1047

Answers (1)

Ivan Glasenberg
Ivan Glasenberg

Reputation: 29950

You can nav to azure portal -> application insights -> Logs, then write query(note: select a proper "Time range" before run the query) like

dependencies 
| where success == "False" 

the details looks like the screenshot below:

enter image description here

and also, you can try click on the "Application map" menu on the left pane of your application insights.

Upvotes: 2

Related Questions