In JMeter, I am using a JSR223 Sampler with some code to send messages to an IBM MQ and logging this message to the sample result in this way:
SampleResult.setResponseData(msg.toString())
Then I am using the View Results Tree -> Response Data -> Response Body to see what was sent.
The problem is that in View Results Tree -> Response Data -> Response Body, I don't see all the content of the message sent. There seems to be some maximum characters limitations, because I am seeing only a part of the sent message and then there is an ellipses (...
) sign shown.
How can I display the full length of the sent message ?
UPDATE: I am not interested in the maximum number or sample results which can be shown inside the view results tree; I am interested in the maximum content (aka character limits which can be seen in the screenshot above) which can be displayed inside one sampler.