pawaelus
pawaelus

Reputation: 159

Performance testing with Jmeter

I've recorded a test script of web application (extJS). The test logs into application (I used login and password saved in .txt file and CSV Data Set Config element), makes some calculations with external webservice and adds some elements to database. It works fine but... I'm not sure that all of my users do these things at the same time... Is there any way to configure it? E.g 100 users do the same scenario at the same time?

Upvotes: 0

Views: 80

Answers (1)

Dmitri T
Dmitri T

Reputation: 168157

You can see the exact number of concurrent users via Active Threads Over Time Listener available via JMeter Plugins

Active Threads Over Time

If you're not happy with what you're seeing and expect more concurrent users you can consider 2 options:

  1. Increase "Loop Count" on Thread Group level as when JMeter thread has finished executing all samplers and doesn't have any more to run and no loops to iterate - it's being shut down.
  2. Add Synchronizing Timer. It pauses all the threads until the desired amount is reached and releases them at exactly the same moment so you will be able to test i.e. what happens when 100 users are trying to log in at the same time.

Upvotes: 0

Related Questions