Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jmeter response times - TTFB or TTLB?

Tags:

jmeter

Are these response times from JMeter TTFB or TTLB?

like image 575
bala Avatar asked Feb 27 '23 01:02

bala


2 Answers

Response time is "time to last byte"

http://jmeter.512774.n5.nabble.com/JMeter-results-td516516.html

like image 60
BlackGaff Avatar answered Mar 02 '23 19:03

BlackGaff


If you use Jmeter View Results Tree CSV output, then you have following time values:

  1. Elapsed: TTLB - time to last byte
  2. Latency: TTFB - time to first byte
  3. Connect: time to connect to server, includes SSL Handling

All times are in msec. JMeter Manual Glossary

like image 45
Mirko Ebert Avatar answered Mar 02 '23 17:03

Mirko Ebert