-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
136 lines (109 loc) · 3.52 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
const Discord = require('discord.js');
const fs = require('fs');
const { Docker } = require('docker-cli-js');
const dotenv = require('dotenv').config();
const { dockerSockPath, channelId } = require('./config/config.json');
const client = new Discord.Client({
intents: [
Discord.GatewayIntentBits.Guilds,
Discord.GatewayIntentBits.GuildMessages
]
});
const docker = new Docker({ socketpath: dockerSockPath });
// fetch all stats from docker
async function getDockerStats() {
const getStats = await docker.command('stats --no-stream --format "{{.Container}}|{{.Name}}|{{.CPUPerc}}|{{.MemUsage}}|{{.NetIO}}|{{.BlockIO}}|{{.PIDs}}"');
const statsArray = getStats.raw.split('\n').slice(1, -1);
const activeStats = statsArray.map((stat) => {
const [containerId, name, cpu, mem, netIO, blockIO, pids] = stat.trim().split('|');
return { containerId, name, cpu, mem, netIO, blockIO, pids };
});
return activeStats;
}
// Building Embed
function createEmbed(stats) {
const embed = new Discord.EmbedBuilder()
.setTitle('Docker Stats')
.setColor('#00FF00')
.setDescription('Current Docker container statistics:')
.addFields(
{ name: `Container ID`,
value: `${stats.containerId}`
},
{
name: `Name`,
value: `${stats.name}`
},
{
name: `Cpu Usage`,
value: `${stats.cpu}`
},
{
name: `Memory Usage`,
value: `${stats.mem}`
},
{
name: `Network I/O`,
value: `${stats.netIO}`
},
{
name: `Disk Read/Write`,
value: `${stats.blockIO}`
},
{
name: `Number of Processes`,
value: `${stats.pids}`
}
)
.setTimestamp();
return embed;
}
// Send docker stats to discord
async function sendDockerStatsToDiscord() {
try {
const dockerStats = await getDockerStats();
const jsonStats = JSON.stringify(dockerStats, null, 2)
const channel = await client.channels.fetch(channelId);
// Fetch all bot messages in the channel
const messages = await channel.messages.fetch();
const botMessages = messages.filter((msg) => msg.author.bot);
// If the bot message exist, edit the first message and delete any additional messages
if (botMessages.size > 0) {
const firstMessage = botMessages.first();
const embed = createEmbed(dockerStats[0]);
await firstMessage.edit({ embeds: [embed.toJSON()] });
// Delete additional messages
botMessages.forEach(async (msg) => {
if (msg.id !== firstMessage.id) {
await msg.delete();
}
});
} else {
//If no bot messages exist, Send a new message
const embed = createEmbed(dockerStats[0]);
await channel.send({ embeds: [embed.toJSON()] });
}
setInterval(async () => {
const updatedStats = await getDockerStats();
updatedStats.forEach((stats) => {
const embed = createEmbed(stats);
const existingMessage = channel.messages.cache.find((m) =>
m.embeds.length && m.embeds[0].fields[0]?.value === stats.containerId
);
if (existingMessage) {
existingMessage.edit({ embeds: [embed.toJSON()] });
} else {
channel.send({ embeds: [embed.toJSON()] });
}
});
}, 5000);
} catch (error) {
console.error('Error fetching Docker stats:', error);
}
}
// Login to bot and sent message
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}`);
sendDockerStatsToDiscord();
})
client.login(process.env.TOKEN);