From d3409bdf3c8d9368081c7f93f86545b43cf2264a Mon Sep 17 00:00:00 2001 From: Luis Bosque Date: Mon, 6 Apr 2015 16:08:29 +0200 Subject: [PATCH] Disable per user health check --- app/monitoring/health_check.js | 40 ++-------------------------------- 1 file changed, 2 insertions(+), 38 deletions(-) diff --git a/app/monitoring/health_check.js b/app/monitoring/health_check.js index 09ec15ee..a966e803 100644 --- a/app/monitoring/health_check.js +++ b/app/monitoring/health_check.js @@ -32,44 +32,8 @@ HealthCheck.prototype.check = function(username, query, callback) { throw err; } }, - function getDBParams(err) { - if (err) { - throw err; - } - startTime = Date.now(); - self.metadataBackend.getAllUserDBParams(username, this); - }, - function runQuery(err, dbParams) { - result.redis.ok = !err; - result.redis.elapsed = Date.now() - startTime; - - if (err) { - throw err; - } - - result.redis.count = Object.keys(dbParams).length; - - var psql = new self.psqlClass({ - host: dbParams.dbhost, - port: global.settings.db_port, - dbname: dbParams.dbname, - user: _.template(global.settings.db_user, {user_id: dbParams.dbuser}), - pass: _.template(global.settings.db_user_pass, { - user_id: dbParams.dbuser, - user_password: dbParams.dbpass - }) - }); - - startTime = Date.now(); - psql.query(query, this); - }, - function handleQuery(err, resultSet) { - result.postgresql.ok = !err; - if (!err) { - result.postgresql.elapsed = Date.now() - startTime; - result.postgresql.count = resultSet.rows.length; - } - callback(err, result); + function handleResult(err) { + callback(err, result); } ); };