Reputation: 71
We have a application that contains 10 to 11 http samples in each page, we need to find the response time of each web page?, how to calculate? I have used transaction controller, but that gives sum of all samples response time, which in reality is very huge like 120000ms (120sec) , but wen manually checked application takes only 3 sec ?
Upvotes: 0
Views: 204
Reputation: 168002
If real web browser executes these 10-11 requests in parallel, i.e. if they are AJAX requests - you need to configure JMeter to do the same, it can be done using Parallel Controller.
In this case you should be looking for the sum of main request and longest request.
You can install Parallel Sampler and Controller using JMeter Plugins Manager
Upvotes: 1