Skip to content
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