简体   繁体   中英

Jmeter Summary Report analysis

Can anyone please explain like how to analyze jmeter's Summary Report?

Example:

Label : Login Action(sampler)
Sample# : 1
average: 104             // What does this mean actually?
min : 104                // What does this mean actually?
max : 104
stddev : 0               // What does this mean actually?
error% : 0
Throughput : 9.615384615 // What does this mean actually?
Kb/Sec : 91.74053486     // What does this mean actually?
Average Bytes : 9770     // What does this mean actually?

It is pretty straightforward:

  • Average, min and max is the response times for the request in milliseconds. The response time os from the request is sent to the response is received. Since you have only one request they are of course all equal.

  • stddev is a measure of the variation of the response times: http://en.wikipedia.org/wiki/Standard_deviation .

  • Throughput is number of requests per second. With a average response time a little over 100ms the throughput is a little below 10.

  • Kb/Sec is the number of kilobytes transferred per second. It is Average Bytes (per request) * Throughput. I am not sure if the average bytes is for only the response or both the request and the response. My guess is that it is the latter. It is the latter: response headers and body.

我刚刚在这里找到了非常简单的解释: http : //jmeterresults.blogspot.jp/2012/07/jmeterunderstanding-summary-report.html

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