Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
The Tor Project
Network Health
Metrics
Onionperf
Commits
deff90a2
Commit
deff90a2
authored
Jul 12, 2020
by
Ana Custura
Browse files
Renames stream_id to id
parent
074842a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
onionperf/visualization.py
View file @
deff90a2
...
...
@@ -58,7 +58,7 @@ class TGenVisualization(Visualization):
for
client
in
analysis
.
get_nodes
():
tgen_streams
=
analysis
.
get_tgen_streams
(
client
)
for
stream_id
,
stream_data
in
tgen_streams
.
items
():
stream
=
{
"
stream_
id"
:
stream_id
,
"label"
:
label
,
stream
=
{
"id"
:
stream_id
,
"label"
:
label
,
"filesize_bytes"
:
int
(
stream_data
[
"stream_info"
][
"recvsize"
])}
stream
[
"server"
]
=
"onion"
if
".onion:"
in
stream_data
[
"transport_info"
][
"remote"
]
else
"public"
if
"time_info"
in
stream_data
:
...
...
@@ -85,7 +85,7 @@ class TGenVisualization(Visualization):
for
client
in
analysis
.
get_nodes
():
tgen_transfers
=
analysis
.
get_tgen_transfers
(
client
)
for
transfer_id
,
transfer_data
in
tgen_transfers
.
items
():
stream
=
{
"
stream_
id"
:
transfer_id
,
"label"
:
label
,
stream
=
{
"id"
:
transfer_id
,
"label"
:
label
,
"filesize_bytes"
:
transfer_data
[
"filesize_bytes"
]}
stream
[
"server"
]
=
"onion"
if
".onion:"
in
transfer_data
[
"endpoint_remote"
]
else
"public"
if
"elapsed_seconds"
in
transfer_data
:
...
...
@@ -110,7 +110,7 @@ class TGenVisualization(Visualization):
stream
[
"start"
]
=
datetime
.
datetime
.
utcfromtimestamp
(
transfer_data
[
"unix_ts_start"
])
streams
.
append
(
stream
)
self
.
data
=
pd
.
DataFrame
.
from_records
(
streams
,
index
=
"
stream_
id"
)
self
.
data
=
pd
.
DataFrame
.
from_records
(
streams
,
index
=
"id"
)
def
__plot_firstbyte_ecdf
(
self
):
for
server
in
self
.
data
[
"server"
].
unique
():
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment