Hey folks, we're trying to add request headers to our traces. To do that, we're adding environment variables like this
- name: DD_TRACE_REQUEST_HEADER_TAGS
value: <key>:<value>,<key>:<value>
However, one of our headers is JSON that looks like this
{"user_agent_ip":<value>,"user_agent":<value>}
The span tags don't seem to like JSON headers, and instead of displaying them as normal it seems to be truncating the value at the comma, so that it looks like this in the trace
{"user_agent_ip":"<value>"
Is there a way to get the trace to not truncate these JSON headers? Thanks in advance!
Hey folks, we're trying to add request headers to our traces. To do that, we're adding environment variables like this
However, one of our headers is JSON that looks like this
The span tags don't seem to like JSON headers, and instead of displaying them as normal it seems to be truncating the value at the comma, so that it looks like this in the trace
Is there a way to get the trace to not truncate these JSON headers? Thanks in advance!