VK9217
VK9217

Reputation: 47

Merge JMeter csv results and plot a graph

I executed load tests using Jmeter for 2 different scenarios and I have the Simple data writer output CSV files for the same. How do I merge these 2 results to see how the performance varies from one scenario to another? I downloaded MergeResults plugin - upon adding the input files and clicking Merge, the output merged csv file gets created but there is no graphical representation which can aid comparing the results. Please can someone help?

I checked the instructions given in the link but I dont know what I am missing in order to plot the graph using the merged csv file.

Please can someone help me?

Upvotes: 0

Views: 1388

Answers (2)

Janesh Kodikara
Janesh Kodikara

Reputation: 1821

You can do comparison of the JMete test results easily with https://sense.blazemeter.com

  1. Sign in to https://sense.blazemeter.com and create project
  2. Upload the CSV files
  3. Select a file
  4. Click on Add to compare button at the bottom
  5. Select the second file and click compare button

You can compare the test results in tabular form and in graphs.

Note : It is possible to compare multiple test result files

Upvotes: 0

Dmitri T
Dmitri T

Reputation: 168122

Merge Results generates a CSV file, if you want to see the graphical representation (chart) you need to open the file in the Listener of your choice.

Alternatively if you need to generate a chart in form of a PNG image you need to use JMeter Plugins Command Line Graph Plotting Tool like:

JMeterPluginsCMD --generate-png responsetimes.png --input-jtl your_merged_file.csv --plugin-type ResponseTimesOverTime

Upvotes: 1

Related Questions