Similar to Sentry.startSpan. Wraps a function with a transaction/span, but does not finish the span
after the function is done automatically. You'll have to call span.end() manually.
The created span is the active span and will be used as parent by other spans created inside the function
and can be accessed via Sentry.getActiveSpan(), as long as the function is executed while the scope is active.
Note that if you have not enabled tracing extensions via addTracingExtensions
or you didn't set tracesSampleRate, this function will not generate spans
and the span returned from the callback will be undefined.
Similar to
Sentry.startSpan
. Wraps a function with a transaction/span, but does not finish the span after the function is done automatically. You'll have to callspan.end()
manually.The created span is the active span and will be used as parent by other spans created inside the function and can be accessed via
Sentry.getActiveSpan()
, as long as the function is executed while the scope is active.Note that if you have not enabled tracing extensions via
addTracingExtensions
or you didn't settracesSampleRate
, this function will not generate spans and thespan
returned from the callback will be undefined.