Transactions/Spans finished without status or associated error
See original GitHub issueSentrySpanAdvice
and SentryOkHttpInterceptor
do finish a span either with SpanStatus.OK
or SpanStatus.INTERNAL_ERROR
(or depending on HTTP response code), also associates the error to the span if any.
SentrySpanClientHttpRequestInterceptor
does not set an status if execution.execute
throws nor associates the error.
SentryTracingFilter
does not associate the error if any.
SentryTransactionAdvice
does not set a status if invocation.proceed
throws nor associates the error.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
[BUG] APM data including Transactions, Spans, CPU ... - GitHub
I've recently updated apm .net core plugin from version 1.7.1 to 1.11.1 and after update I see metrics like this picture below.
Read more >Measurements and Error Analysis - WebAssign
The process of evaluating the uncertainty associated with a measurement result is often called uncertainty analysis or error analysis. The complete ...
Read more >Tracing for the Frontend to the Backend - YouTube
Join Dustin Bailey (Solutions Engineer @Sentry) as he shows how developers can trace those pesky performance issues to poor-performing API ...
Read more >Errors
Unit factors based on definitions are known with complete certainty. There is no error or uncertainty associated with these numbers.
Read more >Types of Error Systematic (determinate) errors Random ...
Random Error (indeterminate error). Caused by uncontrollable variables, which can not be defined/eliminated. 13. 1. Instrument errors - failure to calibrate, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
SentrySpanClientHttpRequestInterceptor
-execution.execute
does not throw when HTTP status != 2xx, but indeedIOException
could happen so we should handle this.SentryTracingFilter
- since exception happens within the scope of transaction it gets associated with the trace inSentryClient
.SentryTransactionAdvice
- you’re right, will fix it.Yep