Skip to content

Commit

Permalink
Adding box plots for http-1up and http-1down.
Browse files Browse the repository at this point in the history
Keeping the axis_labels, but removing the word "mean"
  • Loading branch information
eriktar committed Feb 11, 2025
1 parent 5493093 commit bebc0a3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
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

0 comments on commit bebc0a3

Please sign in to comment.