feat: healthz endpoint
This commit is contained in:
parent
6041b1697a
commit
9f87535a03
@ -17,6 +17,17 @@ router.get('/robots.txt', (req, res, next) => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Health Endpoint
|
||||||
|
*/
|
||||||
|
router.get('/healthz', (req, res, next) => {
|
||||||
|
if (WIKI.models.knex.client.pool.numFree() < 1 && WIKI.models.knex.client.pool.numUsed() < 1) {
|
||||||
|
res.status(503).json({ ok: false }).end()
|
||||||
|
} else {
|
||||||
|
res.status(200).json({ ok: true }).end()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create/Edit document
|
* Create/Edit document
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user