I have added Application Insights to an existing Web API project. It appears to be working in that I can see traces and dependencies (to Azure storage) showing up.
However requests are not showing at all. I was initially testing with an existing POST method but decided to add a new GET method that simply return the string "OK". This also did not show as a request.
At this stage I decided to check if exceptions would show so added a throw as the first line of my method. Interestingly this time I could see the reqest (but not the exception!?) in Application Insights.
Is there anything in the pipeline that could somehow be swallowing the call to stop it appearing? This is a .NET Classic 4.6.2 app and I never really much delved into the pipeline of this version of .NET.