From d571e3e634115a7218b50106e14712a8b4e0c2af Mon Sep 17 00:00:00 2001 From: Christian Trautman Date: Mon, 20 Nov 2017 12:11:15 -0500 Subject: 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 --- tools/pkt_gen/trex/trex.py | 4 ++++ 1 file changed, 4 insertions(+) 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"]))) -- cgit 1.2.3-korg