You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When this was written our protobuf serialization library took base64 input in order to produce binary output, not Uint8Array. We've since changed a lot about the way proto is handled so I wouldn't be surprised if both work now.
When this was written our protobuf serialization library took base64 input in order to produce binary output, not Uint8Array. We've since changed a lot about the way proto is handled so I wouldn't be surprised if both work now.
Yup, Uint8Array can be passed to protobufjs and it's quite efficient.
OTLP pipeline converts trace and span IDs from hex to base64 only for these to be decoded back from base64 in protobuf.js when serializing the payload.
hexToBase64
should be replaced withhexToBinary
which converts the hex strings toUint8Array
.The text was updated successfully, but these errors were encountered: