-
Notifications
You must be signed in to change notification settings - Fork 39
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
refactor: use module per signal type #551
Conversation
) | ||
|
||
func TestUInt64ToTraceIDConversion(t *testing.T) { | ||
assert.Equal(t, | ||
pdata.NewTraceID([16]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}), | ||
pcommon.NewTraceID([16]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}), |
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.
I wonder why NewTraceID
or NewSpanID
are not in trace related package 🤔
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.
Or actually... can you wait for #549 😅 to get merged? XD
Yup, I can 😛 , I need to wait for #550 too |
520e637
to
646b88f
Compare
e68e32c
to
be94c01
Compare
Mitigates open-telemetry/opentelemetry-collector#5168 Signed-off-by: Dominik Rosiek <[email protected]>
be94c01
to
631d78f
Compare
Mitigates open-telemetry/opentelemetry-collector#5168
Depends on: #550
Signed-off-by: Dominik Rosiek [email protected]