How to know that by which error requests are getting failed during performance testing.

Our performance test is running since long hours. Ho do we know the reason of failure if the transactions failed due to some issue.
If we have log request and response body then we can find out the reason. But when we are not logging anything how can we get the cause of error.
In result file we get only reason code and description.
Please suggest.
Thanks in advance.

Comments

  • You can configure JMeter to log failures only by adding the next lines to user.properties file (lives in "bin" folder of your JMeter installation)
    jmeter.save.saveservice.output_format=xml
    jmeter.save.saveservice.response_data.on_error=true

Sign In or Register to comment.