From ecbb5e8ede91126a2cafb63c21c965bc9d7593aa Mon Sep 17 00:00:00 2001 From: = <=> Date: Mon, 5 Aug 2024 22:44:35 -0400 Subject: [PATCH] fixed bug in cpu monitor --- monitors.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/monitors.py b/monitors.py index 88f5d5c..f7e09be 100644 --- a/monitors.py +++ b/monitors.py @@ -92,9 +92,9 @@ class CPUMonitor: cpu_usage = psutil.cpu_percent(percpu=True) for i in range(self.cpu_count): useage = 2 * max(cpu_usage[2*i], cpu_usage[2*i+1]) # Combine logical cores - if useage > 100: - useage = 100 - self.cpu_usage_history[i].append(useage / 100.0) + if useage > 100: + useage = 100 + self.cpu_usage_history[i].append(useage / 100.0) self.history_times.append(time.time()) if len(self.cpu_usage_history[0]) > self.max_history_size: for i in range(self.cpu_count): @@ -102,7 +102,7 @@ class CPUMonitor: self.history_times = self.history_times[-self.max_history_size:] cpu_percentages = [sum(core_history) / self.max_history_size for core_history in self.cpu_usage_history] # Somehow cpu_percentages can have values greater than 1 so we clamp them - return [min(1.0, cpu_percentage) for cpu_percentage in cpu_percentages] + return cpu_percentages except Exception as e: print(f"Error in CPUMonitor.get(): {e}") return [0] * self.cpu_count