Reputation: 312
In my ASP.NET Core application, Request Telemetry is automatically logged to Application Insights, which is wonderful. But it would be nice to know exactly how the duration is measured. Presumably there is a "stopwatch" somewhere, but when does it start and when does it stop? What's included in the duration? I'd like more insight into exactly how this is done.
Upvotes: 0
Views: 2674
Reputation: 6508
There are two parts of the request tracing in asp.net core.
By the way, app insights sdk and asp.net core are opensource in case you want to explorer in-depth.
Upvotes: 1