homepage/src/utils/stats-helpers.js

36 lines
1.1 KiB
JavaScript
Raw Normal View History

2022-08-24 10:44:35 +03:00
export function calculateCPUPercent(stats) {
let cpuPercent = 0.0;
2022-08-25 02:42:33 +03:00
const cpuDelta = stats.cpu_stats.cpu_usage.total_usage - stats.precpu_stats.cpu_usage.total_usage;
const systemDelta = stats.cpu_stats.system_cpu_usage - stats.precpu_stats.system_cpu_usage;
2022-08-24 10:44:35 +03:00
if (systemDelta > 0.0 && cpuDelta > 0.0) {
cpuPercent = (cpuDelta / systemDelta) * stats.cpu_stats.online_cpus * 100.0;
}
return Math.round(cpuPercent * 10) / 10;
}
export function formatBytes(bytes, decimals = 2) {
if (bytes === 0) return "0 Bytes";
const k = 1024;
const dm = decimals < 0 ? 0 : decimals;
const sizes = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"];
const i = Math.floor(Math.log(bytes) / Math.log(k));
2022-08-27 00:55:13 +03:00
return parseFloat(bytes / Math.pow(k, i)).toFixed(dm) + " " + sizes[i];
2022-08-24 10:44:35 +03:00
}
2022-08-27 03:50:49 +03:00
export function formatBits(bytes, decimals = 2) {
if (bytes === 0) return "0 Bytes";
const k = 1024;
const dm = decimals < 0 ? 0 : decimals;
const sizes = ["B", "Kb", "Mb", "Gb", "Tb", "Pb", "Eb", "Zb", "Yb"];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat(bytes / Math.pow(k, i)).toFixed(dm) + " " + sizes[i];
}