-
-
Notifications
You must be signed in to change notification settings - Fork 435
New issue
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
Transactions/Spans finished without status or associated error #1351
Comments
@maciejwalkowiak let me know if it was designed like this or just an oversight. |
|
@Tyrrrz please also double-check that on .NET we do cover those cases, we need to finish the span with status either successfully or not, even associating its error whenever possible. |
…ntry/sentry-java into gh-1351-transaction-advice
…h-1351-transaction-advice-transaction-on-event
Requires #1421 |
@maciejwalkowiak can I close this? I guess every change has been tackled right |
Yep |
SentrySpanAdvice
andSentryOkHttpInterceptor
do finish a span either withSpanStatus.OK
orSpanStatus.INTERNAL_ERROR
(or depending on HTTP response code), also associates the error to the span if any.SentrySpanClientHttpRequestInterceptor
does not set an status ifexecution.execute
throws nor associates the error.SentryTracingFilter
does not associate the error if any.SentryTransactionAdvice
does not set a status ifinvocation.proceed
throws nor associates the error.The text was updated successfully, but these errors were encountered: