-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
tll-channel-timeline | ||
==================== | ||
|
||
:Manual Section: 7 | ||
:Manual Group: TLL | ||
:Subtitle: Delay messages for period between time fields | ||
|
||
Synopsis | ||
-------- | ||
|
||
``timeline+CHILD://PARAMS...;speed=<float>`` | ||
|
||
|
||
Description | ||
----------- | ||
|
||
Prefix channel that delays messages according to their ``time`` fields. Its purpose is to | ||
emulate real world load by replaying recorded data where simple rate limiter is not sufficient. | ||
Delay is calculated as ``(m[n+1].time - m[n].time) / speed`` starting from first message. | ||
|
||
Init parameters | ||
~~~~~~~~~~~~~~~ | ||
|
||
``speed=<float>`` default ``1.0``, speed of data stream compared to ``time`` fields, larger values | ||
means that delay is smaller. | ||
|
||
See also | ||
-------- | ||
|
||
``tll-channel-common(7)`` | ||
|
||
.. | ||
vim: sts=4 sw=4 et tw=100 |