Vikas Mukati
Vikas Mukati

Reputation: 87

Jmeter - How can we calculate think time from response time?

Suppose, I am adding some think time(Timers) in each HTTP request, but when I execute the test, in the report it shows response time as Sum of ThinkTime + actual response time.

How can I get actual response time from the result?

Upvotes: 1

Views: 1856

Answers (3)

Sai Matam
Sai Matam

Reputation: 31

Think Time is the time taken by the user to read, understand and take next action on the webpage.

So the time between a response and the next request is the Think Time. This can be simulated by adding a timer.

Upvotes: 1

Dmitri T
Dmitri T

Reputation: 168072

By default JMeter does not include the duration of:

into Sampler's response time unless you use Transaction Controller with Include duration of timer and pre-post processors in generated sample option selected. If this is the case and you use dynamic values in the Timer - you can consider using Sample Variables functionality to record think time into .jtl results file.

Upvotes: 3

Naveen Kumar R B
Naveen Kumar R B

Reputation: 6398

by default, JMeter does not include Timer's time in the response time of any HTTP sampler.

In case if you are using Transaction Controller to group the requests, then you can deselect the checkbox Include duration of timer and pre-post processors in generated sample in the transaction controller.

Upvotes: 3

Related Questions