-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsysmonitor.py
66 lines (54 loc) · 1.83 KB
/
sysmonitor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os
import platform
import time
import GPUtil
import psutil
from termcolor import colored
def unit(bytes, suffix="B"):
factor = 1024
for unit in ["", "K", "M", "G", "T", "P"]:
if bytes < factor:
return f"{bytes:.2f}{unit}{suffix}"
bytes /= factor
def clr(text):
colorgrn = colored(f"{text}", "green")
return colorgrn
def monitor():
time.sleep(1.5)
gpus = GPUtil.getGPUs()
uname = platform.uname()
cpufreq = psutil.cpu_freq()
mem = psutil.virtual_memory()
gpus = GPUtil.getGPUs()
internet = psutil.net_io_counters()
sys = uname.system
core = psutil.cpu_count(logical=True)
cpu_freq_mx = cpufreq.max
mem_total = (int(mem.total)) / (1024 * 1024 * 1024)
gpu_list = []
for gpu in gpus:
gpu_name = gpu.name
gpu_total_memory = f"{gpu.memoryTotal}MB"
gpu_temperature = f"{gpu.temperature} °C"
gpu_list.append((gpu_name, gpu_total_memory))
g_pu = (gpu_list[0])[0]
g_pu_mem = (gpu_list[0])[1]
os.system("clear")
print(
f"""
{"="*20} SYSTEM Info {"="*20}
System - {colored(sys,"green", attrs=["bold"])}
Total Cores - {clr(f"{core} Cores")}
Cpu Usage - {clr(f"{psutil.cpu_percent()}%")}
Max Cpu Freq - {clr(f"{cpu_freq_mx}MHZ")}
Total Ram - {clr(f"{round(mem_total)}GB")}
Ram in Use - {clr(f"{unit(mem.used)}")} | {clr(f"{mem.percent}%")}
Gpu - {clr(g_pu)}
Gpu Memory - {clr(g_pu_mem)}
{"="*20} Internet {"="*24}
Data Sent - {clr(unit(internet.bytes_sent))}
Data Receive - {clr(unit(internet.bytes_recv))}
"""
)
while True:
monitor()