Need to capture response time in each request going in JMeter. Do I need to add any Listener or any Preprocessor? Or is there any way to capture it in View Result Tree?
Tried on JavaScript code and few other Listeners. Please let me know if there is an easy way to capture this?
2
Answers
If you want the results in GUI mode – take a look at View Results in Table listener:
If you’re running your JMeter test in non-GUI mode – the .jtl results file will contain the response time for each sampler by default:
you should use Listeners like Summary Report/Aggregate Report/View Results in Table
to get the response times.