简体   繁体   English

Jmeter摘要报告分析

[英]Jmeter Summary Report analysis

Can anyone please explain like how to analyze jmeter's Summary Report? 谁能解释一下如何分析jmeter的摘要报告?

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. 从请求到响应的响应时间os被接收。 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 . stddev是对响应时间变化的一种度量: 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. 平均响应时间略高于100毫秒,吞吐量略低于10。

  • Kb/Sec is the number of kilobytes transferred per second. Kb /秒是每秒传输的千字节数。 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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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