From: Christian Trautman Date: Mon, 20 Nov 2017 17:11:15 +0000 (-0500) Subject: trex_stat_packet_counts: Add packet counts to trex reporting X-Git-Tag: opnfv-6.0.0~42^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F23%2F47523%2F1;p=vswitchperf.git trex_stat_packet_counts: Add packet counts to trex reporting Adds packet count totals for transmit and receive to reporting at the end of test execution. JIRA: VSPERF-546 Change-Id: I51027fae109d0ea794c0db03f5781ddb2fcbb941 Signed-off-by: Christian Trautman --- diff --git a/tools/pkt_gen/trex/trex.py b/tools/pkt_gen/trex/trex.py index 70864a53..acdaf287 100644 --- a/tools/pkt_gen/trex/trex.py +++ b/tools/pkt_gen/trex/trex.py @@ -273,6 +273,10 @@ class Trex(ITrafficGenerator): """Calculate results from Trex statistic """ result = OrderedDict() + result[ResultsConstants.TX_FRAMES] = ( + stats["total"]["opackets"]) + result[ResultsConstants.RX_FRAMES] = ( + stats["total"]["ipackets"]) result[ResultsConstants.TX_RATE_FPS] = ( '{:.3f}'.format( float(stats["total"]["tx_pps"])))