Open JamesNK opened 11 months ago
Tagging subscribers to this area: @dotnet/ncl See info in area-owners.md if you want to be subscribed.
Author: | JamesNK |
---|---|
Assignees: | - |
Labels: | `area-System.Net.Http` |
Milestone: | - |
How commonly do you think users would want to make use of such APIs?
There were also hints in the past that we could consider exposing the internal handler pipeline more, such that you could insert handlers at any point (e.g. behind the diagnostics handler).
For your use case, would a workaround like this be acceptable (yay AsyncLocal
😄)?
For your use case, would a workaround like this be acceptable (yay
AsyncLocal
😄)?
As a hack, it might be ok. But I think the goal is to make something generally usable.
How commonly do you think users would want to make use of such APIs?
I don't think it was commonly wanted in the past, but I expect the desire to have to add this kind of feature will grow now that tools like Aspire make telemetry much more accessible.
Triage: we should track and possibly implement this for 9.0.
or ideally, per HttpRequestMessage
@JamesNK how important is to have this per-request? Are there any use-cases that strictly need this? Also, how important is the ability to register multiple callbacks? What would be the downside on if we would try to get away with a single HttpClientHandler.ActivityEnrichmentCallback
?
We invested a lot of energy to have sophisticated, fine-grained metrics enrichment feature in .NET 8, yet it looks like HttpMetricsEnrichmentContext has virtually no users. This makes me question if we made the right design choices back in the days.
Maybe we need a simpler, more coarse-grained, but more discoverable API for both Metrics and Activity enrichment?
Also, how important is the ability to register multiple callbacks? What would be the downside on if we would try to get away with a single
HttpClientHandler.ActivityEnrichmentCallback
?
Why not just make it IObservable
instead which naturally supports N handlers? Is there even a reason to expose "callbacks" in modern code if there is an abstraction that supports event processing without the downfall of original event
s?
I keep seeing these proposals with manual Func/Action
"callbacks" and I just don't understand why one would go that route instead of just leveraging IObservable
.
@julealgon one can implement a callback inline, while implementing IObserver<T>
needs a separate class. People like the simplicity of callbacks.
More imporantly, subscribers don't fit the IObserver<T>
model. According to the docs , IObserver<T>
Provides a mechanism for receiving push-based notifications.
Enricment callbacks are not "push-based notifications", they are hooks to modify built-in telemetry behavior. It's not clear what would be the role of OnCompleted
(why would anyone implement it in practice?) and when an error occurrs, it's insufficient to observe the exception only, the enrichment code also needs to see the HttpRequestMessage
causing the error.
It seems like this is not gonna make it to .net 9. Is there any workaround?
@aeb-dev If you are using OpenTelemetry .NET SDK, you could look at https://github.com/Macross-Software/core/blob/develop/ClassLibraries/Macross.OpenTelemetry.Extensions/README.md#opentelemetry-activity-enrichment-scope.
Something I did a few years ago to enable this type of scenario. Basically uses an AsyncLocal
to store the state and registers an OTel processor to invoke the callback when the Activity\span is ended.
Should work for HttpClient or any child operation type of thing.
Description
HttpClient creates an Activity for each HTTP request. The activity is used to create a span in OTel distributed tracing.
OTel spans have attributes and HttpClient automatically adds information about the HTTP request to the span. Additional information can be added by calling Activity.AddTag. However, there isn't an easy way to enrich the span with custom information for an HTTP request. Usually the activity is accessed using
Activity.Current
, an async local, but HttpClient creates the activity in DiaganosticsHandler which is automatically added as the last handler in the pipeline. It's not possible to add your own handler to work withActivity.Current
because it's created afterwards.An alternative approach is to use a diagnostics listener and listen to
System.Net.Http.HttpRequestOut.Start
. It is called after the activity has been created. The problem with this approach:HttpRequestMessage
in the raised listener callback requires reflection.A scenario where this information is useful is this Aspire UI enhancement: https://github.com/dotnet/aspire/pull/1061
We want to identify the Browser Link HTTP request an ASP.NET Core app makes to Visual Studio. It would be great if we could enrich the activity to have an attribute to identify the call was for Browser Link.
Because that's not possible we were forced to look at the request URL to infer the request is for Browser Link.
Reproduction Steps
Try to enrich Activity for a HttpClient.
Expected behavior
There is an easy-to-use API for enriching the HttpClient. The API:
Maybe something like:
Actual behavior
No easy way to enrich activity for HttpClient.
Regression?
No response
Known Workarounds
No response
Configuration
No response
Other information
No response