JMeter Timers

JMeter Timers

Why Do I Need a Timer in JMeter?

JMeter Timers

Why Do I Need a Timer in JMeter?

User behavior in load tests depends on many factors. Those factors can be “ramp-up time”, “user count on the system in a specific time interval”, etc. and most of them rely on timing. The time between user actions defines the realism of the scenario. That’s why JMeter offers various Timer for you to use in your performance test projects.

By default, JMeter executes all samplers one after another. There is no delay between sampler’s execution. This makes our tests non-realistic because no user goes into a page and clicks to a link, then does another request. A user thinks, reads, writes in a web or mobile app. So all those times are the key characteristic of your scenario. In performance testing, this is called “think time”. Testing without a JMeter timer can create irregular test results because the simulated requests will come in a different pattern than what is seen in a real-world situation.

Different Timer Types

In JMeter, there are 9 different Timer types.

  1. Constant Timer
  2. Uniform Random Timer
  3. Precise Throughput Timer
  4. Constant Throughput Timer
  5. Gaussian Random Timer
  6. JRS223 Timer
  7. Poisson Random Timer
  8. Synchronizing Timer
  9. BeanShell Timer

Each timer has its own behavior. Let’s have a look at some major Timers.

Constant Timer: This is the most basic timer JMeter provides. All Samplers will wait a constant time interval according to the value you provided. The thread delay is in milliseconds.

Uniform Random Timer: This timer lets your Samplers wait in a specific time interval according to the given values. You should provide two values. First one is the constant delay, the second one is the random delay.

Example:

Constant Time: 500ms

Random Delay: 100ms

Our samplers will wait x amount of milliseconds between 400ms and 600ms.

Gaussian Random Timer: It follows a normal or Gaussian distribution method. It provides a delay based on a constant and standard deviation.

JRS223 Timer and BeanShell Timers

They both require you to write some scripts by using javascript, groovy or BeanShell scripting language.

How to use Timers

We recommend you to use scoping articles that we recently published. Scopes in JMeter

There are examples that you can look into.

Happy load testing!