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
We would like to extend the HTTP client request body capturing feature to support more than 1024 bytes.
The 1024 bytes limit currently comes from the fact that we send the content as otel.attribute in Intakev2, which only supports 1024 bytes.
Therefore we'll have to extend the Intakev2 protocol with a separate field which doesn't have this limitation, like we already do for transactions.
Add support for http.request.body intakev2 field to spans (copy it from transactions request.body)
Send the http client requests bodies in http.request.body instead of otel.attributes
Drop the 1024 bytes limitation when capturing the bodies
The text was updated successfully, but these errors were encountered:
We would like to extend the HTTP client request body capturing feature to support more than 1024 bytes.
The 1024 bytes limit currently comes from the fact that we send the content as
otel.attribute
in Intakev2, which only supports 1024 bytes.Therefore we'll have to extend the Intakev2 protocol with a separate field which doesn't have this limitation, like we already do for transactions.
http.request.body
intakev2 field to spans (copy it from transactionsrequest.body
)http.request.body
instead ofotel.attributes
The text was updated successfully, but these errors were encountered: