mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-12 18:32:44 +00:00
fix: fix healthcheck
This commit is contained in:
@@ -81,7 +81,7 @@ services:
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD
|
||||
- mongo
|
||||
- mongosh
|
||||
- --eval
|
||||
- "db.adminCommand('ping')"
|
||||
interval: 10s
|
||||
|
||||
@@ -1,22 +1,26 @@
|
||||
require("dotenv").config();
|
||||
const http = require("http");
|
||||
const config = require("./config");
|
||||
const config = require("./build/config");
|
||||
|
||||
const options = {
|
||||
host: "localhost",
|
||||
port: config.PORT,
|
||||
path: "/healthcheck",
|
||||
method: "GET",
|
||||
host: "127.0.0.1",
|
||||
port: config.default.PORT,
|
||||
timeout: 2000,
|
||||
};
|
||||
|
||||
const request = http.request(options, (res) => {
|
||||
if (res.statusCode == 200) {
|
||||
if (res.statusCode == 200 || res.statusCode == 404) {
|
||||
process.exit(0);
|
||||
} else {
|
||||
const reqURL = `${res.req.protocol}://${res.req.host}:${options.port}${res.req.path}`;
|
||||
console.log(reqURL, res.statusCode);
|
||||
process.exit(1);
|
||||
}
|
||||
});
|
||||
|
||||
request.on("error", (err) => {
|
||||
console.log("ERROR");
|
||||
console.log("ERROR", err);
|
||||
process.exit(1);
|
||||
});
|
||||
|
||||
|
||||
@@ -159,6 +159,9 @@ export default async function start() {
|
||||
stat = {};
|
||||
}, 1000 * 60 * 60);
|
||||
|
||||
apiRouter.get("/healthcheck", async (_, res) => {
|
||||
res.json({ status: "ok" });
|
||||
});
|
||||
apiRouter.get("/stat", async (_, res) => {
|
||||
if (stat.nbRepositories) {
|
||||
res.json(stat);
|
||||
|
||||
@@ -16,6 +16,10 @@ app.use(compression());
|
||||
|
||||
app.use("/api", router);
|
||||
|
||||
app.get("/healthcheck", async (_, res) => {
|
||||
res.json({ status: "ok" });
|
||||
});
|
||||
|
||||
app.all("*", (req, res) => {
|
||||
handleError(
|
||||
new AnonymousError("file_not_found", {
|
||||
|
||||
Reference in New Issue
Block a user