Hyperlight makes use of [Rust tracing Spans](https://docs.rs/tracing/latest/tracing/span/index.html) to trace threads of execution through a Sandbox, this is done primarily throught the [instrument macro](https://docs.rs/tracing/latest/tracing/attr.instrument.html). We should explicitly enable a span to continue across a guest->host->guest call chain. It may be possible to do this using Trace Context Propogator, see [here](https://github.com/Mossaka/otel-condvar/blob/main/src/main.rs) for an example of this