1
votes

How do i get the latency information to show up in the summary report table.

Currently only elapsed time average,Max,min. But it does not show latency info.

I tried by selecting "Save Latency" when clicking on Configure.

Using jmeter-plugin i am only able to generate graph for with Latency vs time. But i need to show latency in the summary report. Is there any setting i need to do.

the jtl file contains info but since it is headless not sure if latency information is showing.

Thanks

1
I'm sure you know that you can see the latency for each request in View Result Tree listener. But I guess what you want is to see an average right?de.la.ru

1 Answers

4
votes

You need to uncomment the following property in jmeter.properties file and set it to true

jmeter.save.saveservice.latency=true

It is also possible to override the property from command line like:

jmeter -n -J jmeter.save.saveservice.latency=true ......

You may also want to consider analysis service for JMeter which provides a much richer representation of load test results.