How to analyze a JMeter summary report?

后端 未结 5 1762
温柔的废话
温柔的废话 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条回答
  •  梦毁少年i
    2020-12-23 13:43

    Short explanation looks like:

    1. Sample - number of requests sent
    2. Avg - an Arithmetic mean for all responses (sum of all times / count)
    3. Minimal response time (ms)
    4. Maximum response time (ms)
    5. Deviation - see Standard Deviation article
    6. Error rate - percentage of failed tests
    7. Throughput - how many requests per second does your server handle. Larger is better.
    8. KB/Sec - self expalanatory
    9. Avg. Bytes - average response size

    If you having troubles with interpreting results you could try BM.Sense results analysis service

提交回复
热议问题