Skip to content
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

feat: Add a method to start a transaction #482

Merged
merged 4 commits into from Oct 25, 2022
Merged

Conversation

phacops
Copy link
Contributor

@phacops phacops commented Oct 20, 2022

In the quest of having a similar API as the other SDKs, we wanted to add a StartTransaction function to start a transaction.

Since the Go SDK makes everything a span and the root span becomes the transaction, we don't need more than a function that calls StartSpan in order to make something compatible with a big difference being TransactionName is now required instead of Op and Op can be set as an option.

You might notice I chose to panic if there's already a transaction in progress in the context. I'm not 100% sure how other SDKs are handling this case. We could choose to return the current transaction, stop the current transaction and start a new one instead of a panic. This will still means several transactions can happen at the same time, just with different contexts.

Fixes #474.

@phacops phacops changed the title feat: Add a method to start a transaction feat: Add a method to start a transaction (fixes https://github.com/getsentry/sentry-go/issues/474) Oct 20, 2022
@phacops phacops changed the title feat: Add a method to start a transaction (fixes https://github.com/getsentry/sentry-go/issues/474) feat: Add a method to start a transaction (fixes #474) Oct 20, 2022
@phacops phacops changed the title feat: Add a method to start a transaction (fixes #474) feat: Add a method to start a transaction Oct 20, 2022
tracing.go Outdated
func StartTransaction(ctx context.Context, name string, options ...SpanOption) *Span {
currentTransaction := ctx.Value(spanContextKey{})
if currentTransaction != nil {
panic(ErrTransactionAlreadyInProgress)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if I like the idea of panicing here, we shouldn't cause possible runtime issues with our SDK methods.

Could we return err instead here? And have users handle this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, I can return an error instead here. I'll be back to asking if I can panic in the HTTP handler though, and so, maybe you can shed some light on how other SDKs are dealing with this if that's a case that can happen?

Could we silently return the existing transaction with a bool to say it already was in progress instead? Could we just return nil and the user would have test for the transaction or get the existing one themselves?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah so there are the two options

  1. We return err, so the users have to grab the existing transaction themselves.
  2. We return the active transaction and don't create one. This does mean that the transaction won't have the context supplied in the constructor.

Option 2 is more "magic" behavior, but I think it's correct since two transactions running at once is basically useless to a person, so let us maybe do that.

Could we silently return the existing transaction with a bool to say it already was in progress instead

Sounds good to me, I think that's cleaner API

AbhiPrasad
AbhiPrasad previously approved these changes Oct 21, 2022
Copy link
Member

@AbhiPrasad AbhiPrasad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@phacops
Copy link
Contributor Author

phacops commented Oct 21, 2022

In the end, the compromise was to return the existing transaction to avoid any panic or additional error management. In the future, we'd need to align the behavior of this SDK on others to actually start a new transaction, referencing the parent one and sending both at the end.

@phacops phacops enabled auto-merge (squash) October 23, 2022 22:12
@phacops phacops disabled auto-merge October 23, 2022 22:12
@phacops phacops enabled auto-merge (squash) October 23, 2022 22:13
@phacops phacops disabled auto-merge October 23, 2022 22:13
@phacops phacops enabled auto-merge (squash) October 23, 2022 22:13
@phacops phacops merged commit af05cee into master Oct 25, 2022
@phacops phacops deleted the pierre/start-transaction branch October 25, 2022 12:46
@GoWithPlay
Copy link

Great work! So when will this feature be released as v0.15.0 of this package??

@AbhiPrasad
Copy link
Member

Yes @GoWithPlay, this will be part of the next release!

@GoWithPlay
Copy link

@AbhiPrasad And when? The latest release took 7 months... too long

image

@AbhiPrasad
Copy link
Member

It'll be less than 7 months 😅, look forward to something within the next 2-3 weeks.

@GoWithPlay
Copy link

@AbhiPrasad Sounds really great!

@cleptric
Copy link
Member

@GoWithPlay 0.15.0 was released yesterday, which includes StartTransaction.

@AbhiPrasad
Copy link
Member

It'll be less than 7 months 😅, look forward to something within the next 2-3 weeks.

More like 2 days! :shipit:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add StartTransaction Function
6 participants