forked from NordSecurity/libtelio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Reduce the batching test to only use few containers that should be directly connected and assert for direction connection * Remove majority of peers and operating systems such as Windows and MacOS to simplify local testing * Add histogram based on packet timestamp differences in addition to already existing distribution histogram * Random misalignment replaced with constant sleeping Batching currently uses only distribution histogram which is basically packets falling into the histogram with a granularity of 1second. This while providing nice visual insight lacked precision since two packets having timestamps of 0.999 and 1.001 would fall into two separate buckets and also to provide some metric of "intervals" we would need to calculate streaks of silence and they are imprecise. A histogram between two packet timestamps should be much more precise and provide better insights. Signed-off-by: Lukas Pukenis <[email protected]>
- Loading branch information
1 parent
03cff7b
commit 03102fa
Showing
10 changed files
with
285 additions
and
232 deletions.
There are no files selected for viewing
Empty file.
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
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
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 @@ | ||
from .traffic import * |
Oops, something went wrong.