I am working on stress test, but my first sampler floods server with tons of requests with very little amount of time, so I want to make a delay between each thread using request.
Test structure:
- Thread1 - Sampler1 (for example: access login form)
- Delay (custom seconds)
- Thread2 - Sampler1 (for example: access login form)
- Delay (custom seconds)
- ThreadN - Sampler1 (for example: access login form)
- Delay (custom seconds)
- Thread1 - Sampler2
- Delay (custom seconds)
- Thread2 - Sampler2
- Delay (custom seconds)
- <...>
- Synchronizing Timer
- All threads realeased with final sampler (this part works)
I tried to put timers as samplers parents or childs. Probably I am missing something, because non of the timers are working for me.
I've found similar problem solutions, but non of the worked for me: JMeter - sharing a delay between requests across multiple ThreadGroups Delays for each thread in Ultimate Thread Group