How to analyze a JMeter summary report?

后端 未结 5 1760
温柔的废话
温柔的废话 2020-12-23 13:21

I get the following result when I run a load test. Can any one help me to read the report?

the number of thread = \'500 \'
ramp up period = \'1\'

Sample             


        
5条回答
  •  攒了一身酷
    2020-12-23 13:40

    The JMeter docs say the following:

    The summary report creates a table row for each differently named request in your test. This is similar to the Aggregate Report , except that it uses less memory. The thoughput is calculated from the point of view of the sampler target (e.g. the remote server in the case of HTTP samples). JMeter takes into account the total time over which the requests have been generated. If other samplers and timers are in the same thread, these will increase the total time, and therefore reduce the throughput value. So two identical samplers with different names will have half the throughput of two samplers with the same name. It is important to choose the sampler labels correctly to get the best results from the Report.

    • Label - The label of the sample. If "Include group name in label?" is selected, then the name of the thread group is added as a prefix. This allows identical labels from different thread groups to be collated separately if required.
    • # Samples - The number of samples with the same label
    • Average - The average elapsed time of a set of results
    • Min - The lowest elapsed time for the samples with the same label
    • Max - The longest elapsed time for the samples with the same label
    • Std. Dev. - the Standard Deviation of the sample elapsed time
    • Error % - Percent of requests with errors
    • Throughput - the Throughput is measured in requests per second/minute/hour. The time unit is chosen so that the displayed rate is at least 1.0. When the throughput is saved to a CSV file, it is expressed in requests/second, i.e. 30.0 requests/minute is saved as 0.5.
    • Kb/sec - The throughput measured in Kilobytes per second
    • Avg. Bytes - average size of the sample response in bytes. (in JMeter 2.2 it wrongly showed the value in kB)

    Times are in milliseconds.

提交回复
热议问题