updated get_ram_and_disk method #19

Merged
PeterSurda merged 1 commits from shailaja/idlers-agent:disk/space into main 2024-06-28 17:28:08 +02:00

View File

@ -145,13 +145,14 @@ class ServerData:
for device in os.listdir('/sys/block'):
device_path = '/sys/block/{}/device'.format(device)
size_path = '/sys/block/{}/size'.format(device)
if os.path.islink(device_path):
if not os.path.islink(device_path):
continue
try:
with open(size_path, 'r') as f:
size = int(f.read().strip())
disk += size
except Exception:
pass # Skip the device if any exception occurs
pass
disk = disk * 512 // (1024**3) # convert to GB
logging.info("RAM: {}MB, Disk: {}GB".format(ram, disk))