Skip to content

Commit e59be37

Browse files
committed
Improved documentation.
1 parent acba657 commit e59be37

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,11 @@ NetPerfMeter supports randomised frame rate and frame size, to create variable b
277277

278278
* const<value>: Constant, i.e. always the same. Example: a frame rate const1000 for means all frames have a size of 1000&nbsp;bytes.
279279
* uniform&lt;a&gt;,&lt;b&gt;: Uniformly distributed from the interval [a,b). Example: uniform900,1100.
280-
* exp&lt;p&gt;: Exponential distribution with average. Example: exp1000.
280+
* exp&lt;p&gt;: Exponential distribution with mean &lt;mean&gt;. Example: exp1000.
281281
* pareto&lt;location&gt;,&lt;shape&gt;: Pareto distribution with location &lt;location&gt; and shape &lt;shape&gt;. Example: pareto0.166667,1.5.
282+
* normal&lt;mean&gt;,&lt;stddev&gt;: Normal distribution with mean &lt;mean&gt; and standard deviation &lt;stddev&gt;. Example: normal1000,500.
283+
Note that normal distribution may result in negative values, which may be ignored (frame size) or interpreted as saturated traffic (frame rate).
284+
* truncnormal&lt;mean&gt;,&lt;stddev&gt;: Truncated normal distribution with mean &lt;mean&gt; and standard deviation &lt;stddev&gt;, i.e. normal distribution without negative values. Example: truncnormal1000,500.
282285

283286
A configured distribution is used to determine:
284287

0 commit comments

Comments
 (0)