Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding box plots for http-1up and http-1down. #316

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions flent/tests/http-1down.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ PLOTS['totals'] = {'description': 'TCP bandwidth with delay and jitter',
'type': 'meta',
'subplots': ('bandwidth', 'http_delay')}
PLOTS['http_delay_cdf']['cutoff'] = (DELAY,-DELAY)

PLOTS['box_total'] = {'description': 'Box plot of HTTP latency and TCP bandwidth',
'type': 'box',
'axis_labels': ['Bandwidth (MBits/s)', 'Download time (ms)'],
'dual_axes': True,
'series': [
{'data': 'TCP download',
'label': 'TCP Download'},
{'data': 'HTTP latency',
'label': 'HTTP get (ms)',
'axis': 2}]}

PLOTS['box_combine'] = {'description': 'Box combination of HTTP latency and TCP bandwidth',
'type': 'box_combine',
'axis_labels': ['Mean bandwidth (MBits/s)', 'Mean download time (ms)'],
Expand Down
12 changes: 12 additions & 0 deletions flent/tests/http-1up.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ PLOTS['totals'] = {'description': 'TCP bandwidth with delay and jitter',
'type': 'meta',
'subplots': ('bandwidth', 'http_delay')}
PLOTS['http_delay_cdf']['cutoff'] = (DELAY,-DELAY)

PLOTS['box_total'] = {'description': 'Box plot of HTTP latency and TCP bandwidth',
'type': 'box',
'axis_labels': ['Bandwidth (MBits/s)', 'Download time (ms)'],
'dual_axes': True,
'series': [
{'data': 'TCP upload',
'label': 'TCP Upload'},
{'data': 'HTTP latency',
'label': 'HTTP get (ms)',
'axis': 2}]}

PLOTS['box_combine'] = {'description': 'Box combination of HTTP latency and TCP bandwidth',
'type': 'box_combine',
'axis_labels': ['Mean bandwidth (MBits/s)', 'Mean download time (ms)'],
Expand Down
Loading