You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@jmeter.apache.org by Deepak Goel <de...@gmail.com> on 2016/05/26 09:18:53 UTC

Ramup Period in Jmeter

Hey

Namaskara~Nalama~Guten Tag~Bonjour

I have put the ramup period in a test as 10 seconds. I believe equal number
of threads would be increased every sec. So increase in the number of
threads during rampup would be a linear graph. What if I want to make it an
exponential graph instead of linear? Can I do it in Jmeter?

Thanks
Deepak
   --
Keigu

Deepak
73500 12833
www.simtree.net, deepak@simtree.net
deicool@gmail.com

LinkedIn: www.linkedin.com/in/deicool
Skype: thumsupdeicool
Google talk: deicool
Blog: http://loveandfearless.wordpress.com
Facebook: http://www.facebook.com/deicool

"Contribute to the world, environment and more : http://www.gridrepublic.org
"

Re: Ramup Period in Jmeter

Posted by Antonio Gomes Rodrigues <ra...@gmail.com>.
Hi.

Check jmeter plugins or use many thread group

Antonio
Le 26 mai 2016 11:18, "Deepak Goel" <de...@gmail.com> a écrit :

> Hey
>
> Namaskara~Nalama~Guten Tag~Bonjour
>
> I have put the ramup period in a test as 10 seconds. I believe equal number
> of threads would be increased every sec. So increase in the number of
> threads during rampup would be a linear graph. What if I want to make it an
> exponential graph instead of linear? Can I do it in Jmeter?
>
> Thanks
> Deepak
>    --
> Keigu
>
> Deepak
> 73500 12833
> www.simtree.net, deepak@simtree.net
> deicool@gmail.com
>
> LinkedIn: www.linkedin.com/in/deicool
> Skype: thumsupdeicool
> Google talk: deicool
> Blog: http://loveandfearless.wordpress.com
> Facebook: http://www.facebook.com/deicool
>
> "Contribute to the world, environment and more :
> http://www.gridrepublic.org
> "
>

Re: Ramup Period in Jmeter

Posted by Flavio Cysne <fl...@gmail.com>.
You can add a Constant Timer in the first Sampler of your Test plan and
write an exponential formula inside a JMeter function like
${__javaScript(Math.pow(${__threadNum()},2)}. This constant Timer will act
like a delay to the first Sampler, in a similar way of the rampup.

Hope it helps.