How to emulate different loads from LG's for single thread group (i.e My First LG should emulate only 200 users, second LG should emulate 50users and my third LG should emulate 250 users)
IS it possible in Jmeter?
How to emulate different loads from LG's for single thread group (i.e My First LG should emulate only 200 users, second LG should emulate 50users and my third LG should emulate 250 users)
IS it possible in Jmeter?
If you use distributed testing - you can take the following approach:
${__P(users,)}
On your load generator machines locate user.properties file (it lives in /bin folder of your JMeter installation) and add the following line to it:
users=200
- on the 1st LGusers=50
- on the 2nd LGusers=250
- on the 3rd LGSee Apache JMeter Properties Customization Guide for more information on JMeter properties and ways of setting and overriding them.