Add Check of DB connections on healthcheck URL (#812)

This commit is contained in:
Paul Borg 2017-05-23 10:15:41 +10:00 committed by kevgliss
parent f9b388c658
commit f6b5012f56
1 changed files with 12 additions and 1 deletions

View File

@ -7,10 +7,21 @@
.. moduleauthor:: Kevin Glisson <kglisson@netflix.com>
"""
from flask import Blueprint
from lemur.database import db
mod = Blueprint('healthCheck', __name__)
@mod.route('/healthcheck')
def health():
return 'ok'
try:
if healthcheck(db):
return 'ok'
except:
return 'db check failed'
def healthcheck(db):
with db.engine.connect() as connection:
connection.execute('SELECT 1;')
return True