Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to simulate requests per minute in JMeter

Tags:

I need to simulate 'n' number of request per minute. I am load testing 5 different webservices each of which should be simulated with different 'n' requests per minute. Which is the best way?. Do I have to use timers?. Can I attach a timer to a Sampler or should it be attached to a thread group only?.

like image 493
Bala Avatar asked Nov 20 '10 12:11

Bala


1 Answers

Add a Constant Throughput Timer to the Thread Group.

If you want separate value of req per minute for each web service, you can create 5 thread groups with 5 timers. Run all of them in one Test Plan

Resources:

http://www.davegardner.me.uk/blog/2010/09/23/effective-load-testing-with-apache-jmeter/#constant-throughput-timer

like image 153
JoseK Avatar answered Sep 19 '22 15:09

JoseK