1

I have a question about how to set a random interval between requests. For example I want to send a request every X seconds and X < 30s. Maybe 25s or 29s. Which timer should I use?

HenlenLee
  • 435
  • 1
  • 11
  • 30

1 Answers1

2

You can use a Gaussian Random Timer by setting Deviation and Constant delay.

enter image description here

Awad
  • 823
  • 3
  • 11
  • 33
  • How can I set the Deviation if the X>30s? – HenlenLee Mar 26 '19 at 20:01
  • What do you mean? why X is > 30s ? If your goal to add delay less than 30s, then you want to add something like: `delay.variable + delay.constant < 30s`. Keep in mind the timer has the values in milliseconds. – Awad Mar 26 '19 at 20:06
  • glad to help! happy testing. – Awad Mar 26 '19 at 20:15