We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@sentry/browser
@sentry/node
raven-js
raven-node
6.1.0
Originally reported at https://forum.sentry.io/t/child-spans-not-linked-to-parent/12854
Example to reproduce: https://codesandbox.io/s/wonderful-chaplygin-bwwjw?file=/src/App.js (thanks @dashed)
Given the code:
const tx = Sentry.startTransaction({ name: 'index', op: 'index', sampled: true }); const span = tx.startChild({ op: 'child' }); const span2 = span.startChild({ op: 'grandkid' }); span2.finish(); span.finish(); tx.finish();
None of the child spans are reported. Removing the sampled: true works as expected.
sampled: true
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Package + Version
@sentry/browser
@sentry/node
raven-js
raven-node
(raven for node)Version:
Description
Originally reported at https://forum.sentry.io/t/child-spans-not-linked-to-parent/12854
Example to reproduce: https://codesandbox.io/s/wonderful-chaplygin-bwwjw?file=/src/App.js (thanks @dashed)
Given the code:
None of the child spans are reported. Removing the
sampled: true
works as expected.The text was updated successfully, but these errors were encountered: