From a05bfbc0bd553f761962634609d626085b3b3beb Mon Sep 17 00:00:00 2001 From: Maryam Tahhan Date: Thu, 26 Nov 2015 11:08:09 +0000 Subject: pkt_gen: rename throughput_tx_* to tx_rate_* Change throughput_tx_* references to tx_rate_* so the results won't be confusing as part of the opnfv test dashboard when they become publicly available. Change-Id: Ie8cfae99a75497f15eb09d097c72c8a35df3b5f9 JIRA: VSPERF-135 Signed-off-by: Maryam Tahhan Reviewed-by: Martin Klozik Reviewed-by: Ian Stokes Reviewed-by: Al Morton --- core/results/results_constants.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'core') diff --git a/core/results/results_constants.py b/core/results/results_constants.py index 263e07a3..58086e32 100644 --- a/core/results/results_constants.py +++ b/core/results/results_constants.py @@ -27,11 +27,11 @@ class ResultsConstants(object): #Traffic Constants #RFC2544 Throughput & Continuous - THROUGHPUT_TX_FPS = 'throughput_tx_fps' + TX_RATE_FPS = 'tx_rate_fps' THROUGHPUT_RX_FPS = 'throughput_rx_fps' - THROUGHPUT_TX_MBPS = 'throughput_tx_mbps' + TX_RATE_MBPS = 'tx_rate_mbps' THROUGHPUT_RX_MBPS = 'throughput_rx_mbps' - THROUGHPUT_TX_PERCENT = 'throughput_tx_percent' + TX_RATE_PERCENT = 'tx_rate_percent' THROUGHPUT_RX_PERCENT = 'throughput_rx_percent' MIN_LATENCY_NS = 'min_latency_ns' MAX_LATENCY_NS = 'max_latency_ns' @@ -67,11 +67,11 @@ class ResultsConstants(object): ResultsConstants.ID, ResultsConstants.PACKET_SIZE, ResultsConstants.DEPLOYMENT, - ResultsConstants.THROUGHPUT_TX_FPS, + ResultsConstants.TX_RATE_FPS, ResultsConstants.THROUGHPUT_RX_FPS, - ResultsConstants.THROUGHPUT_TX_MBPS, + ResultsConstants.TX_RATE_MBPS, ResultsConstants.THROUGHPUT_RX_MBPS, - ResultsConstants.THROUGHPUT_TX_PERCENT, + ResultsConstants.TX_RATE_PERCENT, ResultsConstants.THROUGHPUT_RX_PERCENT, ResultsConstants.MIN_LATENCY_NS, ResultsConstants.MAX_LATENCY_NS, -- cgit 1.2.3-korg