Github user milleruntime commented on the issue:
https://github.com/apache/accumulo/pull/255
> If we can create spans by explicitly passing the parent (constructor or
static method)
I'm not quite sure exactly what you mean... instead of this:
`Span span = Trace.start("sendMutations");
...
span.stop();`
We would have something like:
`Span child = Span.trace(parent, "sendMutations");
...
child.stop() `
Wouldn't the child still be local?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---