feat: healthz endpoint

pull/835/head
Nick 5 years ago
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
*/

Loading…
Cancel
Save