How to Save Response Data in JMeter
November 6, 2017

How to Save Response Data in JMeter

Open Source Automation
Test Data Management
Back to top

Introduction

Performance test developers often encounter situations when it is necessary to save response data from a server to a file. This may be needed for various reasons. Let’s consider some of them:

  • Debugging failed requests - This is the most common reason. We don’t have the ability to see responses in the JMeter interface in real time when running a performance test in Non-GUI mode. So, checking responses after a performance test can be helpful for understanding the reason for requests failures.
  • Saving responses is the purpose of the test - Sometimes saving the response data is the purpose of the test. We can use this data for subsequent analysis, importing to a database and more.
  • Sharing response data - Sharing response results with teammates could be useful for various reasons. We may want to show artifacts in the responses from the server or ask for help with debugging.
  • The response is too large - We will not be able to see a response in the View Results Tree if the size of the response is more than 200K. There are a couple of ways to solve this problem and one of them is saving the response to a file.

 

Of course, there could be additional reasons to saving responses from the server to a file. It all depends on your project needs. Let’s discuss how to do it with Apache JMeter™ in this blog post.

We will need a simple JMeter script to demonstrate the various approaches to saving responses from the server. I chose the BlazeDemo website (http://blazedemo.com/) to create our performance script and run the tests.

 

What are we waiting for? Let's get started!

 

1. Add a Thread Group to the Test plan.

 

Test plan -> Add -> Thread (Users) -> Thread Group

 

2. Add a HTTP Request which opens the landing page of the test web app.

 

Thread Group -> Add -> Sampler -> HTTP Request

save response data in jmeter

Set the following values:

  • Name: HTTP Request - Passed
  • Server name or IP: blazedemo.com

 

3. Add a Response Assertion to the HTTP Request - Passed. This assertion will check if the page is correct.

HTTP Request - Passed -> Add -> Assertions -> Response Assertion

jmeter listeners, response data

Add a row to Patterns to the Test field:

Back to top

Welcome to the Simple Travel Agency!

 

This assertion is correct and the sample should pass every time since the text is presented on the page.

 

4.  Add another HTTP Request.

 

Thread Group -> Add -> Sampler -> HTTP Request

how do i save responses on jmeter?

Set the values:

  • Name: HTTP Request - Failed
  • Server name or IP: blazedemo.com

5. Add a Response Assertion to the HTTP Request - Failed. This assertion will also check if the page loaded correctly. But let’s fill the ‘Pattern to Test’ field with an incorrect verification value. We will use it for demo purposes.

HTTP Request - Failed -> Add -> Assertions -> Response Assertion

how do i use listeners in jmeter?

Add a row to the Patterns to Test field:

Back to top

Welcome to the Simple Travel Agency! Fail

 

This assertion is incorrect and the sample should fail each time because the text isn’t presented on the page.

6. We are just about done! Add a listener to see the test results.

Thread Group -> Add -> Listener -> View Results Tree

 

7. Run the script.

 

using listeners to save response data on jmeter

As we can see, each request has a response in the View Results Tree. This is very comfortable for debugging. We can see the actual page and understand what is wrong. Now let’s see how we can save these results to a file.

Get started working with response data & JMeter with BlazeMeter today!

Start Testing

Back to top

Saving Response Data with Listeners

 

The first option for saving response data is listeners that have ‘Write results to a file / Read from file’ sections. Examples of such listeners are the View Results Tree, the Simple Data Writer and the View Results in Table. There are more.

 

We will use a View Results Tree listener for this demonstration.

 

8. Update the ‘Write results to a file / Read from file’ section in the View Results Tree listener.

 

saving response data with jmeter properties

 

Set a filename to save the results to:

  • Filename: test_results.csv

 

IMPORTANT. You may need to set an absolute location in the Filename field.

 

9. Run the script and upload the results to JMeter.

 

Run the script by pressing the run button. Script results will be saved to the test_results.csv file on the computer. Clean results and upload the file: test_results.csv, by using the Browse button in the ‘Write results to a file / Read from file’ section.

 

jmeter, saving responses to file

 

As we can see, the View Results Tree is showing all the requests that took place during the test run. We can see if a request passed or failed, but we can’t see the actual responses, and respectively we can’t understand the failure reason.

 

10. Let’s play with the listener configuration to store the responses to files.

 

jmeter listeners, view results tree, view results table, simple data writer

  • Change the name of the file to test_result.xml.
  • Click the Configure button.
  • Check the Save As XML and Save Response Data (XML) checkboxes.
  • Save those changes by clicking Done.

 

11. Run the script, clean the results and upload the results from the file again.

how do i save my test results on jmeter?

Now we can see not only a list of requests with their statuses in the View Results Tree, but also responses from the server. Isn’t that cool! Now we can easily understand why a request failed.

This approach has one significant downfall. In a real load testing scenario, storing all of these requests could be too much for your workstation. Let’s fix this problem.

 

12. Let’s save the request/response only for failed requests.

 

open source load testing results

 

Check the Errors checkbox on the View Results Tree listener.

Run, clean and upload results again.

Now the request list contains only a list of failed requests with saved response data. This is a better approach when we are running real performance tests.

 

Back to top

Saving Response Data with a ‘Save Responses to a File’ Listener

 

There is another useful listener called the ‘Save Responses to a File’ listener. This listener is is implemented especially for saving responses from a server to files. It generates a new file for each sample, and saves the file with the response data.

 

Let’s see how it works.

 

13. Add a Save Responses to a file listener to the HTTP Request - Failed.

 

HTTP Request - Failed -> Add -> Listeners -> Save Responses to a file

 

can jmeter properties help me save my responses?

 

Fill the Filename prefix field with blazedemo.

 

IMPORTANT. You may need to set an absolute location for the Filename prefix field.

 

14. Run the script. And open the folder where results should be saved.

 

We should see the ‘blazedemo1.html’ file in this folder. Open it with a browser.

 

how can i save results with jmeter listeners?

 

The browser will open an HTML version of response. This is a very visual approach to storing response data to a file.

 

Back to top

Saving Response Data With jmeter.properties

 

Let’s consider one more approach to storing response data to a file. This approach uses JMeter properties. It is a better fit for a Non-GUI mode of running performance tests.

 

Just to make it clear: previous approaches also work in Non-GUI mode.

 

The Jmeter.properties file is located in the bin folder of JMeter. Open it with your prefered editor. There are plenty of useful properties there, but we are interested only in a couple of them.

 

  • #jmeter.save.saveservice.output_format=csv
  • #jmeter.save.saveservice.response_data=false
  • #jmeter.save.saveservice.response_data.on_error=false

 

By default, JMeter saves the test results in csv format without storing the response data.

 

15. Let’s set JMeter properties to store the response data to a file and run the script.

 

Set the properties with the following values and save the file.

 

  • jmeter.save.saveservice.output_format=xml
  • jmeter.save.saveservice.response_data=true
  • #jmeter.save.saveservice.response_data.on_error=false

 

Run the script with the option -l. This option determines the location and name of the log file.

 

jmeter -n -t test_script.jmx -l test_result.jtl

 

Upload this .jtl file with the View Results Tree listener Browse button. You can also view the results in a text editor, but the listener is more convenient.

 

looking at test results with jmeter non-gui

 

The log contains a list of requests with their statuses, just like the responses from the server. This is better, but still not perfect, since storing responses for all requests could take a lot of disk space, as we discussed.

 

16. Let’s change the JMeter setting and run the script again.

 

Update the jmeter.properties file with the following values.

 

  • jmeter.save.saveservice.output_format=xml
  • #jmeter.save.saveservice.response_data=false
  • jmeter.save.saveservice.response_data.on_error=true

 

Run the script, clean the listener and upload the results again.

 

jmeter test results saved

 

That’s it. The passed requests have no response data, and the failed requests do. That was our goal!

 

I hope this blog post was useful for you. I will be glad to answer any questions you might have in the comments section.

 

To learn more JMeter, check out BlazeMeter University with advanced and basic courses.

START TESTING NOW

 

Relates Resources:

Back to top