How to analyze a JMeter summary report?

jmeter, report, summary

Solution

Short explanation looks like:

- Sample - number of requests sent

- Avg - an Arithmetic mean for all responses (sum of all times / count)

- Minimal response time (ms)

- Maximum response time (ms)

- Deviation - see Standard Deviation article

- Error rate - percentage of failed tests

- Throughput - how many requests per second does your server handle. Larger is better.

- KB/Sec - self expalanatory

- Avg. Bytes - average response size

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

Problem

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 = '500' Avg = '20917' min = '820' max = '48158' Std Deviation = '10563.178194669255' Error % = '0.046' throughput = '10.375381295262601' KB/Sec = `247.05023046315702` Avg. Bytes = '24382.664' ```

Original source