updated get_ram_and_disk method
This commit is contained in:
parent
bd6ecc3519
commit
ea4675a56c
15
agent.py
15
agent.py
|
@ -145,13 +145,14 @@ class ServerData:
|
||||||
for device in os.listdir('/sys/block'):
|
for device in os.listdir('/sys/block'):
|
||||||
device_path = '/sys/block/{}/device'.format(device)
|
device_path = '/sys/block/{}/device'.format(device)
|
||||||
size_path = '/sys/block/{}/size'.format(device)
|
size_path = '/sys/block/{}/size'.format(device)
|
||||||
if os.path.islink(device_path):
|
if not os.path.islink(device_path):
|
||||||
try:
|
continue
|
||||||
with open(size_path, 'r') as f:
|
try:
|
||||||
size = int(f.read().strip())
|
with open(size_path, 'r') as f:
|
||||||
disk += size
|
size = int(f.read().strip())
|
||||||
except Exception:
|
disk += size
|
||||||
pass # Skip the device if any exception occurs
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
disk = disk * 512 // (1024**3) # convert to GB
|
disk = disk * 512 // (1024**3) # convert to GB
|
||||||
logging.info("RAM: {}MB, Disk: {}GB".format(ram, disk))
|
logging.info("RAM: {}MB, Disk: {}GB".format(ram, disk))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user