1
0
Fork 0

change mark issues

refactor/models
Matthew 2019-11-09 23:16:04 -05:00
parent 990cb8be23
commit b924e08ced
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export default class Whois extends Command {
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);
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('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);