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
Use Case
A spring pet clinic app (having POST service) was running which was instrumented by hypertrace java-agent. The app was loaded with multiple POST requests having body ~1MB.
hypertrace traces has the body of a http post request. By default it should capture 128 KB.
Issue
We are only capturing 512 bytes of post request body. See attached images/files.
Correct the default capture size is 128 KB. Which is 128*1024 = 131072 bytes. One string character is 2 bytes. Hence by default 65536 characters should be captured.
EDIT: One string character = 2 bytes applies for UTF-16BE encoding.
Use Case
A spring pet clinic app (having POST service) was running which was instrumented by hypertrace java-agent. The app was loaded with multiple POST requests having body ~1MB.
hypertrace traces has the body of a http post request. By default it should capture 128 KB.
Issue
We are only capturing 512 bytes of post request body. See attached images/files.
Solution

The post request body should be 128KB by default.
input_1MB.txt
output_512B.txt
The text was updated successfully, but these errors were encountered: