66 lines
2.3 KiB
JavaScript
66 lines
2.3 KiB
JavaScript
import { BaseServiceWorker } from "eris-fleet";
|
|
import { createServer } from "http";
|
|
import { log } from "../logger.js";
|
|
import database from "../database.js";
|
|
|
|
class PrometheusWorker extends BaseServiceWorker {
|
|
constructor(setup) {
|
|
super(setup);
|
|
|
|
console.info = (str) => this.ipc.sendToAdmiral("info", str);
|
|
|
|
if (process.env.METRICS && process.env.METRICS !== "") {
|
|
this.httpServer = createServer(async (req, res) => {
|
|
if (req.method !== "GET") {
|
|
res.statusCode = 405;
|
|
return res.end("GET only");
|
|
}
|
|
res.write(`# HELP esmbot_command_count Number of times a command has been run
|
|
# TYPE esmbot_command_count counter
|
|
# HELP esmbot_server_count Number of servers/guilds the bot is in
|
|
# TYPE esmbot_server_count gauge
|
|
# HELP esmbot_shard_count Number of shards the bot has
|
|
# TYPE esmbot_shard_count gauge
|
|
`);
|
|
if (process.env.API_TYPE === "ws") {
|
|
const servers = await this.ipc.serviceCommand("image", { type: "stats" }, true);
|
|
res.write(`# HELP esmbot_connected_workers Number of workers connected
|
|
# TYPE esmbot_connected_workers gauge
|
|
esmbot_connected_workers ${servers.length}
|
|
# HELP esmbot_running_jobs Number of running jobs on this worker
|
|
# TYPE esmbot_running_jobs gauge
|
|
# HELP esmbot_queued_jobs Number of queued jobs on this worker
|
|
# TYPE esmbot_queued_jobs gauge
|
|
# HELP esmbot_max_jobs Number of max allowed jobs on this worker
|
|
# TYPE esmbot_max_jobs gauge
|
|
`);
|
|
for (const [i, w] of servers.entries()) {
|
|
res.write(`esmbot_running_jobs{worker="${i}"} ${w.runningJobs}\n`);
|
|
res.write(`esmbot_max_jobs{worker="${i}"} ${w.max}\n`);
|
|
}
|
|
}
|
|
const counts = await database.getCounts();
|
|
for (const [i, w] of Object.entries(counts)) {
|
|
res.write(`esmbot_command_count{command="${i}"} ${w}\n`);
|
|
}
|
|
|
|
const stats = await this.ipc.getStats();
|
|
res.write(`esmbot_server_count ${stats.guilds}\n`);
|
|
res.write(`esmbot_shard_count ${stats.shardCount}\n`);
|
|
res.end();
|
|
});
|
|
this.httpServer.listen(process.env.METRICS, () => {
|
|
log("info", `Serving metrics at ${process.env.METRICS}`);
|
|
});
|
|
}
|
|
|
|
this.serviceReady();
|
|
}
|
|
|
|
shutdown(done) {
|
|
if (this.httpServer) this.httpServer.close();
|
|
done();
|
|
}
|
|
}
|
|
|
|
export default PrometheusWorker;
|