Reputation: 688
How can I measure the following points
from Apache Jmeter?
Is there any suitable listener to measure all these points?
Upvotes: 4
Views: 4910
Reputation: 34516
With aggregate report Or csv / xml results you get nearly all the infos you can regarding response times BUT:
I suggest you read:
Regards
Philippe M.
http://www.ubik-ingenierie.com/-Solutions-
Upvotes: 4
Reputation: 5708
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.
Upvotes: 2