-
Notifications
You must be signed in to change notification settings - Fork 44
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
Add Event Emitter with Data #122
Add Event Emitter with Data #122
Conversation
instrumentation/src/test/java/io/opentelemetry/android/emitter/EventEmitterWithDataTest.java
Show resolved
Hide resolved
instrumentation/src/test/java/io/opentelemetry/android/emitter/EventEmitterWithDataTest.java
Outdated
Show resolved
Hide resolved
Hi @tonzhan2 . Just wanted to touch base and let you know we haven't dropped this -- it's very much just in flux while the special events working group figures out some additional basics that might directly impact this PR. I appreciate your patience around this effort. If you want to keep track of the work over there, here is the public tracking notes doc: https://docs.google.com/document/d/1BKjQWP32FXL9g1cGbyj7DMXV1Uq_RL8_78rWaMBhN0A/edit#heading=h.1nz72gv5evo2 Thanks! |
} else if (val instanceof Boolean) { | ||
builder.put(AttributeKey.booleanKey(key), (Boolean) val); | ||
} else { | ||
builder.put(AttributeKey.stringKey(key), val.toString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With all respect... Given that:
I'm going to close this PR with the expectation that we will soon be able to leverage the new "data" (complex types) API from core. Feel free to reopen if this seems off-base. Thanks again for the submission and for blazing the trail. 😁 |
Clean copy of this PR #100 with updated changes from master