summaryrefslogtreecommitdiff
path: root/src/daemons
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemons')
-rw-r--r--src/daemons/server-stats.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemons/server-stats.ts b/src/daemons/server-stats.ts
index d2c6e32292..750c00c0c4 100644
--- a/src/daemons/server-stats.ts
+++ b/src/daemons/server-stats.ts
@@ -47,7 +47,7 @@ export default function() {
async function cpuUsage() {
try {
const data = await sysUtils.currentLoad();
- return Math.floor(data.currentload);
+ return Math.floor(data.currentload / 100);
} catch (error) {
console.error(error);
throw error;