From 3d14c60db72806048d6c345a92c7c715d6457daa Mon Sep 17 00:00:00 2001 From: Radek Zetik Date: Wed, 3 Feb 2016 11:28:51 +0000 Subject: VSPERF: Report percentage frameloss from IXIA/IXNET The patch introduces frame_loss_percent result value. The implementation is done for Ixia and IxNet traffic generators. The value is visible in list of result values at the end of the test, in csv, rst and md files. JIRA: VSPERF-201 Change-Id: I9b6795d427b199cb62ed66b7a137e412e36dc757 Signed-off-by: Radek Zetik Reviewed-by: Maryam Tahhan Reviewed-by: Brian Castelli Reviewed-by: Al Morton Reviewed-by: Tv Rao Reviewed-by: Billy O Mahony --- core/results/results_constants.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/results/results_constants.py b/core/results/results_constants.py index 8f139f14..fcf068b7 100644 --- a/core/results/results_constants.py +++ b/core/results/results_constants.py @@ -37,6 +37,7 @@ class ResultsConstants(object): MIN_LATENCY_NS = 'min_latency_ns' MAX_LATENCY_NS = 'max_latency_ns' AVG_LATENCY_NS = 'avg_latency_ns' + FRAME_LOSS_PERCENT = 'frame_loss_percent' #Burst traffic TX_FRAMES = 'tx_frames' RX_FRAMES = 'rx_frames' @@ -79,4 +80,5 @@ class ResultsConstants(object): ResultsConstants.THROUGHPUT_RX_PERCENT, ResultsConstants.MIN_LATENCY_NS, ResultsConstants.MAX_LATENCY_NS, - ResultsConstants.AVG_LATENCY_NS] + ResultsConstants.AVG_LATENCY_NS, + ResultsConstants.FRAME_LOSS_PERCENT] -- cgit 1.2.3-korg