How to analyze a JMeter summary report?

后端 未结 5 1744
温柔的废话
温柔的废话 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:50

    Sample: Number of requests sent.

    The Throughput: is the number of requests per unit of time (seconds, minutes, hours) that are sent to your server during the test.

    The Response time: is the elapsed time from the moment when a given request is sent to the server until the moment when the last bit of information has returned to the client.

    The throughput is the real load processed by your server during a run but it does not tell you anything about the performance of your server during this same run. This is the reason why you need both measures in order to get a real idea about your server’s performance during a run. The response time tells you how fast your server is handling a given load.

    Average: This is the Average (Arithmetic mean μ = 1/n * Σi=1…n xi) Response time of your total samples.

    Min and Max are the minimum and maximum response time.

    An important thing to understand is that the mean value can be very misleading as it does not show you how close (or far) your values are from the average.For this purpose, we need the Deviation value since Average value can be the Same for different response time of the samples!!

    Deviation: The standard deviation (σ) measures the mean distance of the values to their average (μ).It gives you a good idea of the dispersion or variability of the measures to their mean value.

    The following equation show how the standard deviation (σ) is calculated:

    σ = 1/n * √ Σi=1…n (xi-μ)2

    For Details, see here!!

    So, if the deviation value is low compared to the mean value, it will indicate you that your measures are not dispersed (or mostly close to the mean value) and that the mean value is significant.

    Kb/sec: The throughput measured in Kilobytes per second.

    Error % : Percent of requests with errors.

    An example is always better to understand!!! I think, this article will help you.

提交回复
热议问题