Compare commits

...

7 Commits

1 changed files with 39 additions and 22 deletions

View File

@ -197,29 +197,46 @@ async function generateResponse(conversation, message) {
let time = 0 let time = 0
// define a function that shows the system load percentage and updates the message // define a function that shows the system load percentage and updates the message
const showSystemLoad = async () => { const showSystemLoad = async () => {
time = time + 7 time = time + 7;
cpuStat.usagePercent(function(err, percent, seconds) { cpuStat.usagePercent(function(err, percent, seconds) {
if (err) { if (err) {
return console.log(err); return console.log(err);
} }
const systemLoad = percent //the percentage cpu usage over all cores const systemLoad = percent;
const freeMemory = os.freemem() / 1024 / 1024 / 1024; const freeMemory = os.freemem() / 1024 / 1024 / 1024;
const totalMemory = os.totalmem() / 1024 / 1024 / 1024; const totalMemory = os.totalmem() / 1024 / 1024 / 1024;
const usedMemory = totalMemory - freeMemory; const usedMemory = totalMemory - freeMemory;
const messageData = `Please wait, I am thinking...\nSystem Load: ${systemLoad.toFixed(2)}%\nMemory Usage: ${usedMemory.toFixed(2)} GB / ${totalMemory.toFixed(2)} GB | Time: ~${time} seconds.`;
const embedData = {
// if the message object doesn't exist, create it color: 0x0099ff,
if (!botMessage) { title: 'Please wait.. I am Thinking...',
(async () => { fields: [
botMessage = await message.channel.send(messageData); {
})() name: 'System Load',
value: `${systemLoad.toFixed(2)}%`,
} else { },
botMessage.edit(messageData); // otherwise, update the message {
} name: 'Memory Usage',
}) value: `${usedMemory.toFixed(2)} GB / ${totalMemory.toFixed(2)} GB`,
}; },
{
name: 'Time',
value: `~${time} seconds.`,
},
],
};
// if the message object doesn't exist, create it
if (!botMessage) {
(async () => {
botMessage = await message.channel.send({ embeds: [embedData] });
})();
} else {
botMessage.edit({ embeds: [embedData] }); // otherwise, update the message
}
});
};
// call the function initially // call the function initially
await showSystemLoad(); await showSystemLoad();