From 9f266bd7202556cb6d83913282a0b410c1ff42d4 Mon Sep 17 00:00:00 2001 From: Ido Barnea Date: Sun, 22 May 2016 16:03:18 +0300 Subject: Added min latency calc in Python --- .../trex_control_plane/stl/trex_stl_lib/trex_stl_stats.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'scripts/automation/trex_control_plane/stl/trex_stl_lib') diff --git a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_stats.py b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_stats.py index f9db22a1..98a08d55 100644 --- a/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_stats.py +++ b/scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_stats.py @@ -980,7 +980,15 @@ class CLatencyStats(CTRexStats): output[int_pg_id]['latency']['total_max'] = current_pg['latency']['h']['max_usec'] output[int_pg_id]['latency']['histogram'] = current_pg['latency']['h']['histogram'] zero_count = current_pg['latency']['h']['cnt'] - current_pg['latency']['h']['high_cnt'] - output[int_pg_id]['latency']['histogram'].append({'key':0, 'val':zero_count}) + if zero_count != 0: + output[int_pg_id]['latency']['histogram'].append({'key':0, 'val':zero_count}) + output[int_pg_id]['latency']['total_min'] = 1 + else: + min_usec = current_pg['latency']['h']['max_usec'] + for bucket in output[int_pg_id]['latency']['histogram']: + if bucket['key'] < min_usec: + min_usec = bucket['key'] + output[int_pg_id]['latency']['total_min'] = min_usec self.latest_stats = output return True -- cgit 1.2.3-korg