Add more CPU details for the host
This commit is contained in:
parent
fb452da28f
commit
0fa20ed0b4
|
@ -33,7 +33,7 @@
|
||||||
<div class="server details">
|
<div class="server details">
|
||||||
<textarea name="specs" rows=20 readonly>
|
<textarea name="specs" rows=20 readonly>
|
||||||
Hardware:
|
Hardware:
|
||||||
• CPU: {{server_details["hardware"]["cpu"]}}
|
• CPU: {{server_details["hardware"]["cpu"]["cores"]}} Cores with {{server_details["hardware"]["cpu"]["threads"]}} Threads on a {{server_details["hardware"]["cpu"]["name"]}}
|
||||||
• RAM: {{server_details["hardware"]["ram"]}} GB
|
• RAM: {{server_details["hardware"]["ram"]}} GB
|
||||||
|
|
||||||
Versions:
|
Versions:
|
||||||
|
|
|
@ -86,11 +86,32 @@ def news():
|
||||||
news = news_file.read()
|
news = news_file.read()
|
||||||
|
|
||||||
def hardware_info():
|
def hardware_info():
|
||||||
processor = platform.processor()
|
processor = get_cpuinfo()
|
||||||
mem_bytes = sysconf('SC_PAGE_SIZE') * sysconf('SC_PHYS_PAGES')
|
mem_bytes = sysconf('SC_PAGE_SIZE') * sysconf('SC_PHYS_PAGES')
|
||||||
mem_gib = mem_bytes/(1024.**3)
|
mem_gib = mem_bytes/(1024.**3)
|
||||||
mem_pretty = round(mem_gib, 1)
|
mem_pretty = round(mem_gib, 1)
|
||||||
return {"cpu": processor, "ram": mem_pretty}
|
return {"cpu": {"cores": processor[0]["cpu cores"], "threads": len(processor), "name": processor[0]["model name"]}, "ram": mem_pretty}
|
||||||
|
|
||||||
|
def get_cpuinfo():
|
||||||
|
cpus = []
|
||||||
|
with open("/proc/cpuinfo", "r") as fp:
|
||||||
|
cpuinfo = fp.read()
|
||||||
|
thread_info = cpuinfo.split("\n\n")
|
||||||
|
thread_info = list(filter(lambda x: x!="", thread_info))
|
||||||
|
for thread in thread_info:
|
||||||
|
thread_dict = {}
|
||||||
|
field_lines = thread.split("\n")
|
||||||
|
for field in field_lines:
|
||||||
|
key, value = field.split(":")
|
||||||
|
key = key.strip()
|
||||||
|
value = value.strip()
|
||||||
|
try:
|
||||||
|
thread_dict.update({key: int(value)})
|
||||||
|
except ValueError:
|
||||||
|
thread_dict.update({key: value})
|
||||||
|
cpus.append(thread_dict)
|
||||||
|
return cpus
|
||||||
|
|
||||||
|
|
||||||
def paper_version():
|
def paper_version():
|
||||||
status = server_status()
|
status = server_status()
|
||||||
|
|
Loading…
Reference in a new issue