File size: 410 Bytes
a8e9b84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import time
import psutil
from DragMusic.misc import _boot_
from DragMusic.utils.formatters import get_readable_time
async def bot_sys_stats():
bot_uptime = int(time.time() - _boot_)
UP = f"{get_readable_time(bot_uptime)}"
CPU = f"{psutil.cpu_percent(interval=0.5)}%"
RAM = f"{psutil.virtual_memory().percent}%"
DISK = f"{psutil.disk_usage('/').percent}%"
return UP, CPU, RAM, DISK
|