JMeter - How to load result file?

I made a test JMeter and can get results.csv or result.jtl.

How can I load it into JMeter from GUI and command line?

+3


source to share


2 answers


What do you mean by "download"? You have the results, now you need to analyze them. This can be done in different ways depending on how you plan to present the results and what metrics you need to report, for example:



  • Using Microsoft Excel or equivalent like Libre Office Calc
  • Using JMeter GUI:

    • Open JMeter GUI
    • Add a Listener of your choice to the test plan (e.g. Aggregate report is good)
    • Using the Browse button, locate the results file and download it.
    • JMeter will parse the results file, perform the necessary calculations and display the metrics. If you need, you can click "Save Table Data" to export the results for later reuse.

      JMeter Listener Display Results

  • You can build some charts reflecting the test metrics using the Graph Generators Listener
  • You can generate HTML dashboard :

    jmeter -g your_result_file.jtl -o /where/you/want/the/dashboard/to/be/generated
    
          

  • You can use third party analysis like JAnalyzer or BM.Sense

+6


source


You need to add listener to create jtl and result files.



Write file_name to listener: results.csv

+1


source







All Articles