-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
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
Simple Example Not Working #287
Comments
I think the reason is that our I will look into sanitizing and stabilizing the |
This affects all similar examples (e.g. the OTLP exporter example). As a workaround, I could add calls to |
I've created an OTLP exporter example using explicit calls to |
BTW the zPages example is buggy too, which is related to running spans that don't end I believe |
|
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 text was updated successfully, but these errors were encountered: