Run a jmeter thread group every 5 minutes

jmeter, loops, threadgroup

Solution

Does your Thread Group contain single HTTP request? Well, add Timer to the the Thread Group.

Problem

My jmeter test plan has a thread group that has a csv config and 2 HTTP requests I want to be able to run the thread group every 5 minutes so it performs a csv config and 2 HTTP requests every 5 minutes Google search hasn't gave me much info Thanks for any suggestion Barry UPDATE: For the benefit of others To solve my problem I uses the Test Action Sampler, as follows: ``` Send first HTTP Request Send second HTTP Request Test Action Sampler - Wait 5 minutes in milliseconds ``` I put this in a thread group that loops forever and it sends the 2 requests every 5 minutes

Original source