scope.setTransaction gone from "@sentry/node" 7.14.1 #5880
-
Seems like setTransaction is gone from the scope now-- is there an alternative pattern for setting the transaction ID in a apollo-server-express plugin? I had some code like
|
Beta Was this translation helpful? Give feedback.
Answered by
AbhiPrasad
Oct 4, 2022
Replies: 1 comment
-
As per https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md#5180, you can use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
acomito
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As per https://github.com/getsentry/sentry-javascript/blob/master/CHANGELOG.md#5180, you can use
scope.setTransactionName
instead ofscope.setTransaction
here.