Closed
Description
How do you use Sentry?
Sentry Saas (sentry.io)
Version
2.22.0
Steps to Reproduce
import sentry_sdk
sentry_sdk.init(dsn=DSN, debug=True, traces_sample_rate=1)
@sentry_sdk.trace
def test():
return 1 + 1
transaction = sentry_sdk.start_transaction(
name="replays.consumer.process_recording",
op="replays.consumer",
)
test()
transaction.finish()
Expected Result
A trace that looks like this:
Actual Result
A trace that looks like this: