Search code examples
javajmeterperformance-testingload-testing

Is there any way to measure Server Processing Time using JMeter?


Is there any way to measure Server processing Time in JMeter whether it's require manual calculation.I am able to measure (Response Time/ Latency) and (Elapsed Time) of request but unable to get processing Time.


Solution

  • I don't think it's possible to get this using JMeter.

    Because to do it you would need the time taken between the server sending the first byte and the client receiving it (network time), as you don't have it ....

    Even with this, I am not sure it would be accurate, as server can continue processing while starting to write bytes in the buffer of the response.

    So my answer is that it's not possible with JMeter alone.