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;