Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/commit/5bc67137f6cb37ec7ed3d21da83d0bcdbcfbd03b?style=split&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix: glances metric - different key for process list memory on windows host ()

pull/4411/head
shamoon 4 weeks ago committed by GitHub
parent 22c02f4e45
commit 5bc67137f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -63,7 +63,7 @@ export default function Component({ service }) {
<div className="opacity-25 w-14 text-right">{item.cpu_percent.toFixed(1)}%</div> <div className="opacity-25 w-14 text-right">{item.cpu_percent.toFixed(1)}%</div>
<div className="opacity-25 w-14 text-right"> <div className="opacity-25 w-14 text-right">
{t("common.bytes", { {t("common.bytes", {
value: item.memory_info[memoryInfoKey], value: item.memory_info[memoryInfoKey] ?? item.memory_info.wset,
maximumFractionDigits: 0, maximumFractionDigits: 0,
})} })}
</div> </div>

Loading…
Cancel
Save