From 09a8c6b6296941e0d6d2504d473fa394735eee1a Mon Sep 17 00:00:00 2001 From: Ido Barnea Date: Tue, 17 May 2016 17:53:23 +0300 Subject: changed latency profile file name --- scripts/stl/flow_latency_stats.py | 25 ------------------------- scripts/stl/flow_stats_latency.py | 25 +++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 25 deletions(-) delete mode 100644 scripts/stl/flow_latency_stats.py create mode 100644 scripts/stl/flow_stats_latency.py (limited to 'scripts/stl') diff --git a/scripts/stl/flow_latency_stats.py b/scripts/stl/flow_latency_stats.py deleted file mode 100644 index 334406e5..00000000 --- a/scripts/stl/flow_latency_stats.py +++ /dev/null @@ -1,25 +0,0 @@ -from trex_stl_lib.api import * -import os - -# stream from pcap file. continues pps 10 in sec -CP = os.path.join(os.path.dirname(__file__)) - -class STLS1(object): - - def get_streams (self, direction = 0, **kwargs): - return [STLStream(packet = STLPktBuilder(pkt = os.path.join(CP, "yaml/udp_64B_no_crc.pcap")), # path relative to pwd - mode = STLTXCont(pps=1000), - flow_stats = STLFlowLatencyStats(pg_id = 7)), - - STLStream(packet = STLPktBuilder(pkt = os.path.join(CP, "yaml/udp_594B_no_crc.pcap")), # path relative to pwd - mode = STLTXCont(pps=5000), - flow_stats = STLFlowLatencyStats(pg_id = 12)) - ] - - -# dynamic load - used for trex console or simulator -def register(): - return STLS1() - - - diff --git a/scripts/stl/flow_stats_latency.py b/scripts/stl/flow_stats_latency.py new file mode 100644 index 00000000..334406e5 --- /dev/null +++ b/scripts/stl/flow_stats_latency.py @@ -0,0 +1,25 @@ +from trex_stl_lib.api import * +import os + +# stream from pcap file. continues pps 10 in sec +CP = os.path.join(os.path.dirname(__file__)) + +class STLS1(object): + + def get_streams (self, direction = 0, **kwargs): + return [STLStream(packet = STLPktBuilder(pkt = os.path.join(CP, "yaml/udp_64B_no_crc.pcap")), # path relative to pwd + mode = STLTXCont(pps=1000), + flow_stats = STLFlowLatencyStats(pg_id = 7)), + + STLStream(packet = STLPktBuilder(pkt = os.path.join(CP, "yaml/udp_594B_no_crc.pcap")), # path relative to pwd + mode = STLTXCont(pps=5000), + flow_stats = STLFlowLatencyStats(pg_id = 12)) + ] + + +# dynamic load - used for trex console or simulator +def register(): + return STLS1() + + + -- cgit 1.2.3-korg