http.client.duration vs redirections #3462
-
We are currently prototyping an implementation for .NET's Shall we log different |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
hi @antonfirsov! ya, we probably need to specify this better. to start with, can you clarify which modeling option you are using?
|
Beta Was this translation helpful? Give feedback.
-
It happens in the handler right before Assuming we can and are going to introduce truly per-request metrics from the platform, providing clear The implications of not doing it would be:
Option 2 is intended for instrumentation libraries (that can't overcome existing limitations) rather than native instrumentations which can do the right thing :) |
Beta Was this translation helpful? Give feedback.
It happens in the handler right before
SocketsHttpHandler
and implements option 1 when it comes to retries. For redirects, it depends on user configuration.Assuming we can and are going to introduce truly per-request metrics from the platform, providing clear
http.client.duration
that does not depend on user configuration would be great.The implications of not doing it would be:
Option 2 is intended for instrumentation lib…