You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Sentry.start_transaction with name, the Sentry receives <unlabeled transaction> instead of configured name.
To Reproduce
transaction=Sentry.start_transaction(name: "GameServer#command",op: "execute_command")# Do somethingtransaction.finish
Expected behavior
Above result should use Sentry.get_current_scope.set_transaction_name to generate it.
Sentry.get_current_scope.set_transaction_name("GameServer#command")transaction=Sentry.start_transaction(op: "execute_command")# Do somethingtransaction.finish
According to the source code, the Scope keeps a transaction_names array as the Sentry event transaction name, but the Sentry::Transaction#name is correctly configured but not used in Sentry event.
Describe the bug
When using
Sentry.start_transaction
with name, the Sentry receives<unlabeled transaction>
instead of configured name.To Reproduce
Expected behavior
Above result should use
Sentry.get_current_scope.set_transaction_name
to generate it.According to the source code, the Scope keeps a
transaction_names
array as the Sentry eventtransaction
name, but theSentry::Transaction#name
is correctly configured but not used in Sentry event.Actual behavior
Environment
Sentry Config
This is not necessary but could be helpful.
The text was updated successfully, but these errors were encountered: