Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to send concurrent requests in Jmeter

I want to use Jmeter to capture response times for requests to my web script in a concurrent way, but Jmeter sends them sequentially. Is there any way I can simulate concurrent requests?

I'm looking for something similar to web_concurrent_start() in LoadRunner.

like image 341
Lusitha Avatar asked Mar 09 '15 09:03

Lusitha


2 Answers

JMeter provides Synchronizing Timer which can be used for kicking off all the requests in its scope at exactly the same moment.

See Using the JMeter Synchronizing Timer guide for more information on where to place, how to use and existing limitations.

like image 174
Dmitri T Avatar answered Oct 13 '22 23:10

Dmitri T


You can try TailSampler plugin - it simulates browser behavior by retrieving resources in a parallel way.

like image 37
TEH EMPRAH Avatar answered Oct 13 '22 22:10

TEH EMPRAH