-
Notifications
You must be signed in to change notification settings - Fork 20
Description
So my status is showing wrong ram. discord.js@12.5.3 pterostatus@1.1.3
Its showing 60gigs and the server is using 10gigs anyidea how to fix?
`const Status = require('pterostatus');
const Controller = new Status.Controller(4000, {
token: '',
guildID: '',
channelID: '881999231781580840',
color: '#00b300', // Embed color
pterodactyl: {
panel: "https://dev-panel.domain.eu",
apiKey: 'tk',
},
node: {
message: '{node.name}:\nCPU: {node.cpu.used}\nRAM: {node.memory.used}/{node.memory.total}\nDISK: {node.disk.used}/{node.disk.total}\n\nInfo:\nOS: {node.os}\nCPU-M: {node.cpu} / {node.cpu.cores} jader',
online: '🟢 ONLINE',
offline: '🔴 OFFLINE'
},
embed: {
color: '#00b300',
title: 'STATUS',
// description: '{nodes.list}\nInfo:\nOS: {node.os} \nCPU-M: {node.cpu} {disk.total}\n',
description: '{nodes.list}',
footer: {
text: 'Poslední Update: {lastupdated}',
icon: 'https://i.imgur.com/o4mwYKL.png'
}
},
interval: 15000
});
const Daemon = new Status.Daemon("Panel", 15000, {
ip: "0.0.0.0",
port: "4000",
secure: false,
});`