Save View Results in Table listener as a csv file in jmeter

csvjmeterperformance-testingsave

I am running a test script on jmeter and I want to save the results I obtained from the 'View Results in Table' listener. I just don't understand how I would do this the same way I save the results in the Summary Report and Aggregate Report listener; that is, there is no 'Save Table Data' in the bottom of the View Results in Table unlike the other listeners. How can I do this?

Best Answer

Summary Report and Aggregate Report have "Save Table Data" button because the majority of values in them are calculated.

View Results in Table listener just displays raw data therefore it does not require to calculate anything hence there is no "Save Table Data" button.


I am under impression that you are using JMeter a little bit wrong. Normally you should not be saving listeners output separately, moreover you don't even need the listeners during the test run.

  1. Run your test in command-line non-GUI mode like:

    jmeter -n -t test.jmx -l results.jtl
    
  2. After your test is done open JMeter GUI add a listener of your choice to Test Plan and open results.jtl file with that listener

Make sure that all the listeners are either disabled or deleted during the test execution as they cause huge memory overhead which may cause lesser throughput or even ruin your test. See Greedy Listeners - Memory Leeches of Performance Testing arcticle for more detailed explanation.