Reputation: 3127
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.
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
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:
and also, you can try click on the "Application map" menu on the left pane of your application insights.
Upvotes: 2