sen tes
sen tes

Reputation: 11

Jmeter timer for the http request should be run automatically every 40 minute ?

I would like to run a http request in thread group for jmeter. But it should be run per 40 minute. Therefore it should be run with frequency.

Also Im using jmeter 2.12 and jdk 1.7. So how can I configure this proceed and should I use any timer or anything?

 Thread group
   - Get token request

Please advice me,

Upvotes: 1

Views: 1643

Answers (1)

Dmitri T
Dmitri T

Reputation: 168082

Your expectation is correct:

  • Thread Group (1 thread, loop count: forever or enough loops)

In this case Get Token Request method will be fired every 40 minutes (40 * 60 * 1000) where 40 is minutes, 60 is seconds per minute and 1000 is milliseconds per second

Take a look at How to Use Variables in Different Thread Groups guide to learn how to use fresh token in another Thread Group if needed.

Upvotes: 1

Related Questions