-
Notifications
You must be signed in to change notification settings - Fork 850
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 incubator module with utilities for mutating SpanData. #1625
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1625 +/- ##
============================================
- Coverage 85.45% 85.41% -0.04%
Complexity 1382 1382
============================================
Files 164 164
Lines 5418 5418
Branches 556 556
============================================
- Hits 4630 4628 -2
- Misses 588 589 +1
- Partials 200 201 +1
Continue to review full report at Codecov.
|
// type. | ||
@Immutable | ||
@AutoValue | ||
public abstract class SpanData implements io.opentelemetry.sdk.trace.data.SpanData { |
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.
Can we name this something else, so we don't have the name collision, requiring using FQNs for hte interface?
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.
Not sure why I missed this review, sorry! I could have sworn I added a comment in description about it but didn't - I agree, but couldn't come up with a better name :( Any ideas?
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.
BuildableSpanData? SpanDataExtender? BuiltSpanData?
Maybe just SpanDataBuilder for now, since it's really a temporary move to see if this is the best approach?
Thanks! Just one small question about naming the one with the builder. |
@anuraaga any updates on the naming here? |
Is this really urgent? |
It's not, but I'd rather not have open PRs lying around, even if they aren't technically needed for GA. |
… into incubator-spandata
@jkwatson Yup sorry for the slowness, finally renamed. |
Sorry for the huge delay on this.
For #1321