The simple example does not seem to be working.
I believe this is because the span destructor is not being invoked, which in turn invokes the span.End() method.
As a workaround, one has to explicitly call the span.End() method.
However, this is causing a lot of memory leaks. I tried running the example with bazel run --config=asan //example/simple:example_simple, and the report is too long to be pasted here.
I believe this has something to do with the newly implemented Runtime context, as per the report.
Any insights on this would be really appreciated, thanks!
The simple example does not seem to be working.
I believe this is because the span destructor is not being invoked, which in turn invokes the
span.End()method.As a workaround, one has to explicitly call the
span.End()method.However, this is causing a lot of memory leaks. I tried running the example with
bazel run --config=asan //example/simple:example_simple, and the report is too long to be pasted here.I believe this has something to do with the newly implemented Runtime context, as per the report.
Any insights on this would be really appreciated, thanks!