We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For background context see:
If OpenTelemetry is configured with filtering - e.g. as follows:
AddHttpClientInstrumentation(o => o.FilterHttpRequestMessage = _ => false)
... then our SentrySpanProcessor receives OnStart events for any outgoing requests from HttpClient but never receives a corresponding OnEnd event.
OnStart
OnEnd
This leaves a bunch of SentrySpan instances accumulating in SpanProcessor._map, which never get cleaned up.
SentrySpan
SpanProcessor._map
The text was updated successfully, but these errors were encountered:
jamescrosswell
Successfully merging a pull request may close this issue.
Problem
For background context see:
If OpenTelemetry is configured with filtering - e.g. as follows:
... then our SentrySpanProcessor receives
OnStart
events for any outgoing requests from HttpClient but never receives a correspondingOnEnd
event.This leaves a bunch of
SentrySpan
instances accumulating inSpanProcessor._map
, which never get cleaned up.Investigation
The text was updated successfully, but these errors were encountered: