diff --git a/flent/tests/http-1down.conf b/flent/tests/http-1down.conf index f3cdba5b..49ec2a1a 100644 --- a/flent/tests/http-1down.conf +++ b/flent/tests/http-1down.conf @@ -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)'], diff --git a/flent/tests/http-1up.conf b/flent/tests/http-1up.conf index 1d1adb3d..9f045941 100644 --- a/flent/tests/http-1up.conf +++ b/flent/tests/http-1up.conf @@ -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)'],