diff options
author | Hanoh Haim <hhaim@cisco.com> | 2016-05-11 13:33:30 +0300 |
---|---|---|
committer | Hanoh Haim <hhaim@cisco.com> | 2016-05-11 13:33:30 +0300 |
commit | ddd6c17a0a4bb2f286d11204c9c0ccd1ae29c113 (patch) | |
tree | 428f367bb5495612d7a734fdb47807bf838f5ca9 | |
parent | 0bd2c9ce6c5264b9b3a9a6e42286edae389ebce4 (diff) |
CPU calculation is different now, in flavor to be higher than real, update the values
-rw-r--r-- | scripts/automation/trex_control_plane/stl/trex_stl_lib/trex_stl_stats.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 61122e79..eace5cf2 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 @@ -588,8 +588,8 @@ class CGlobalStats(CTRexStats): self._ports_dict = ports_dict_ref self.events_handler = events_handler - self.watched_cpu_util = WatchedField('CPU util.', '%', 85, 60, events_handler) - self.watched_rx_cpu_util = WatchedField('RX core util.', '%', 85, 60, events_handler) + self.watched_cpu_util = WatchedField('CPU util.', '%', 95, 90, events_handler) + self.watched_rx_cpu_util = WatchedField('RX core util.', '%', 95, 90, events_handler) def get_stats (self): stats = {} |