When a DogStatsD client sends an event, the message looks like
"_e{5,4}:title|text|p:low".
_e{5,4} is the header of the event.
5 is the size of the title (title in this example) and 4 is the size of the text (text in this example).
DogStatsD clients must send the size in bytes for the text and for the title and not the size in char. It is an issue when the text or the title contains non ASCII chars.
When a DogStatsD client sends an event, the message looks like
"_e{5,4}:title|text|p:low"
._e{5,4}
is the header of the event.5
is the size of the title (title
in this example) and4
is the size of the text (text
in this example).DogStatsD clients must send the size in bytes for the text and for the title and not the size in char. It is an issue when the text or the title contains non ASCII chars.