You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the main HttpInListener methods call the Enrich functor to add additional data to the activity, e.g. OnStartActivity, OnStopActivity, OnException. Only OnCustom does not.
I suggest adding to:
// See https://github.com/aspnet/Mvc/blob/2414db256f32a047770326d14d8b0e2afd49ba49/src/Microsoft.AspNetCore.Mvc.Core/MvcCoreDiagnosticSourceExtensions.cs#L36-L44
This would allow adding more data from the payload, including additional information from the Action, e.g. other attributes or different routeData information.
Example: I use an extended version of the routing attributes to match incoming routes based on extra headers, similar to the concepts described in 5 levels of Hypermedia and the extra information would be useful as tag data.
The text was updated successfully, but these errors were encountered:
Feature Request
All the main HttpInListener methods call the Enrich functor to add additional data to the activity, e.g. OnStartActivity, OnStopActivity, OnException. Only OnCustom does not.
I suggest adding to:
opentelemetry-dotnet/src/OpenTelemetry.Instrumentation.AspNetCore/Implementation/HttpInListener.cs
Lines 244 to 264 in 13e721d
This would allow adding more data from the payload, including additional information from the Action, e.g. other attributes or different routeData information.
Example: I use an extended version of the routing attributes to match incoming routes based on extra headers, similar to the concepts described in 5 levels of Hypermedia and the extra information would be useful as tag data.
The text was updated successfully, but these errors were encountered: