skip to Main Content

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


  1. If you want the results in GUI mode – take a look at View Results in Table listener:

    enter image description here

    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:

    enter image description here

    Login or Signup to reply.
  2. you should use Listeners like Summary Report/Aggregate Report/View Results in Table
    to get the response times.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search