From 990cb8be2333f958faea3111a4f7565c421cbe98 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 9 Nov 2019 23:14:14 -0500 Subject: [PATCH] change mark issues --- src/commands/whois.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/commands/whois.ts b/src/commands/whois.ts index 115b2bc..9519c3b 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -31,8 +31,9 @@ export default class Whois extends Command { embed.addField('Email Address', account.emailAddress, true); embed.addField('Created By', `<@${this.client.users.get(account.createdBy).id}>`, true); embed.addField('Created At', moment(account.createdAt).format('dddd, MMMM Do YYYY, h:mm:ss A'), true); - embed.addField('CPU Usage', `${await this.client.util.exec(`top -b -n 1 -u ${account.username} | awk 'NR>7 { sum += $9; } END { print sum; }'`)}%`, true); - embed.addField('Memory', dataConversion(Number(this.client.util.exec(`memory ${account.username}`))), true); + const cpuUsage = await this.client.util.exec(`top -b -n 1 -u ${account.username} | awk 'NR>7 { sum += $9; } END { print sum; }'`); + embed.addField('CPU Usage', cpuUsage.split('\n')[0], true); + embed.addField('Memory', dataConversion(Number(await this.client.util.exec(`memory ${account.username}`))), true); const data = await this.client.redis.get(`storage-${account.username}`) ? dataConversion(Number(this.client.redis.get(`storage-${account.username}`))) : 'N/A'; embed.addField('Storage', data, true); let details = '';