1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/lib/routes/health-check.js
2016-06-16 14:03:49 +02:00

17 lines
497 B
JavaScript

var knex = require('../db/dbPool');
var logger = require('../logger');
module.exports = function (app) {
app.get('/health', function (req, res) {
knex.select(1)
.from('features')
.then(function() {
res.json({ health: 'GOOD' });
})
.catch(function(err) {
logger.error('Could not select from features, error was: ', err);
res.status(500).json({ health: 'BAD' });
});
});
};