'How can we measure the Server Processing Time,Page Loading Time,Page Rendering Time and Page Size from Apache Jmeter

How can I measure the following points

  • Server Processing Time
  • Page Loading Time
  • Page Rendering Time
  • Page Size

from Apache Jmeter?

Is there any suitable listener to measure all these points?



Solution 1:[1]

Server processing time = time to first byte - request sent
Page loading time = time to last byte - time to first byte
Page size = Response size

Page rendering time - you'll have to use GUI testing tools for this one.
E.g. 
  Chrome has Ctrl+Shift+i > Timeline tab
  Firefox has Firebug > Net tab.

See here for more info on these phrases mentioned above.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Community