Reputation: 47
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
Reputation: 1821
You can do comparison of the JMete test results easily with https://sense.blazemeter.com
You can compare the test results in tabular form and in graphs.
Note : It is possible to compare multiple test result files
Upvotes: 0
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