You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following time units are supported: <code>ms</code>, <code>sec</code>, <code>min</code>, <code>hour</code>, <code>day</code>.
6528
6550
You can omit time unit in case the rate is 0: <code>rate(0)</code></li>
6529
6551
<li><code>random_arrivals(<number> sec)</code> — configures random arrivals schedule with the given duration.
6530
6552
The starting load rate is configured before <code>random_arrivals</code>, and the finish load rate is configured after <code>random_arrivals</code>.
6531
-
For example, 10 minute test from 5/sec at the beginning till 15/sec at the end could be configured as <code>rate(5/sec) random_arrivals(10 min) rate(15/sec)</code>.
6553
+
For example, 10 minute test from 5/sec at the beginning to 15/sec at the end could be configured as <code>rate(5/sec) random_arrivals(10 min) rate(15/sec)</code>.
6532
6554
<br/>The implicit rate at the beginning of the test is 0. If the finish rate is not provided (or if several <code>random_arrivals</code> steps go one after another),
6533
6555
then the load is constant. For instance, <code>rate(3/sec) random_arrivals(1 min) random_arrivals(2 min) rate(6/sec)</code> configures
6534
-
constant rate of 3/sec for the first 1 minute, and then the load increases from 3/sec till 6/sec during the next 2 minutes.
6556
+
constant rate of 3/sec for the first 1 minute, and then the load increases from 3/sec to 6/sec during the next 2 minutes.
6535
6557
The time units are the same as in <code>rate</code>.
6536
6558
</li>
6537
6559
<li><code>even_arrivals(<number> sec)</code> — configures even arrivals (TODO: not implemented yet). For instance, if the desired load
0 commit comments