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
Currently when sending an event using unicode characters, the length of the string sent to statsd is evaluated using codepoints, causing string clipping in the final data ingested. Also, Java uses UTF-16 and the agent expects UTF-8 so we have to use the UTF-8 calculations explicitly.
AC:
UTF-8char[] length is used as the sent length of statsd event headers/message.
The text was updated successfully, but these errors were encountered:
Currently when sending an event using unicode characters, the length of the string sent to statsd is evaluated using codepoints, causing string clipping in the final data ingested. Also, Java uses UTF-16 and the agent expects UTF-8 so we have to use the
UTF-8
calculations explicitly.AC:
UTF-8
char[]
length is used as the sent length of statsd event headers/message.The text was updated successfully, but these errors were encountered: