feat: Uncomment code to allow backend to send disk space information to frontend
parent
7bab4bf6b9
commit
c444012963
|
@ -90,33 +90,33 @@ const monitor = async () => {
|
|||
}
|
||||
|
||||
|
||||
// exec("df -h /", (error: any, stdout: any, stderr: any) => {
|
||||
exec("df -h /", (error: any, stdout: any, stderr: any) => {
|
||||
|
||||
// if (error) {
|
||||
// console.log(`exec error: ${error.message}`);
|
||||
// return;
|
||||
// }
|
||||
// if (stderr) {
|
||||
// console.log(`exec stderr: ${stderr}`);
|
||||
// return;
|
||||
// }
|
||||
if (error) {
|
||||
console.log(`exec error: ${error.message}`);
|
||||
return;
|
||||
}
|
||||
if (stderr) {
|
||||
console.log(`exec stderr: ${stderr}`);
|
||||
return;
|
||||
}
|
||||
|
||||
// stdout = stdout.split(/\r?\n/)
|
||||
// stdout = stdout[1].trim().split(/\s+/)
|
||||
stdout = stdout.split(/\r?\n/)
|
||||
stdout = stdout[1].trim().split(/\s+/)
|
||||
|
||||
// // DISK SPACE MONITORING
|
||||
// const io = getIO();
|
||||
// io.emit("diskSpaceMonit", {
|
||||
// action: "update",
|
||||
// diskSpace: {
|
||||
// size: stdout[1],
|
||||
// used: stdout[2],
|
||||
// available: stdout[3],
|
||||
// use: stdout[4]
|
||||
// }
|
||||
// });
|
||||
// DISK SPACE MONITORING
|
||||
const io = getIO();
|
||||
io.emit("diskSpaceMonit", {
|
||||
action: "update",
|
||||
diskSpace: {
|
||||
size: stdout[1],
|
||||
used: stdout[2],
|
||||
available: stdout[3],
|
||||
use: stdout[4]
|
||||
}
|
||||
});
|
||||
|
||||
// });
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue