diff --git a/hwmonDaemon.py b/hwmonDaemon.py index 69e0a0b..2bf075a 100644 --- a/hwmonDaemon.py +++ b/hwmonDaemon.py @@ -1378,7 +1378,8 @@ class SystemHealthMonitor: # Get usage percentage directly from parts[4] usage_percent = float(parts[4].rstrip('%')) - + size_value = self._convert_size_to_bytes(parts[1]) # For total size + used_value = self._convert_size_to_bytes(parts[2]) # For used size filesystem = { 'mountpoint': mountpoint, 'total': parts[1],