简体   繁体   中英

Jmeter : Summary report : Throughput

is the total throughput shown in last row in Summary Report correct ? I m using Jmeter 2.11

I find it difficult to match the displayed figure by manipulation.

I followed the formula (x/sec) : Number of request / Total response time required (in sec) Or 1/Avg total response time (sec).

for example : 50 request taking avg response time as 2000 ms each then throughput = 50/(50*2) = 0.5/sec But Jmeter shows different value than 0.5/sec or 30/min

Can someone help me here?

I was also having similar assumption. But this is the formula for calculating throughput.

 endTime = lastSampleStartTime + lastSampleLoadTime
 startTime = firstSampleStartTime
 converstion = unit time conversion value

 Throughput = Numrequests / ((endTime - startTime)*conversion)

(I got this few months back from the below answer) Calculating throughput from Jmeter jtl log file

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM