JMeter - response time calculation

Can someone please explain to me how JMeter calculates response time?

I need to understand this graph: Response time with time .

+7
source share
1 answer

Response time is also known as time to last byte , and Latency is time to first byte :

  • Time to the last byte - time from the moment of sending the request to the completion of the last resource.
  • Time to the first byte - the time from the moment the request was sent until the first byte of the first resource was received.

Is this what you wanted to know or did I misunderstand your question?

EDIT:
Here is a more detailed explanation of all possible performance measurements.

+15
source

All Articles