
This patch adds health check functions and corresponding database enhancement to support health check. Change-Id: I57cd3a7b1f18ad2dbf3b363a3772707c20d966ee
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
# Copyright 2016 ATT
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import oslo_db
|
|
|
|
from ord.db import api as db_api
|
|
from ord.openstack.common import log as logging
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class HealthCheck(object):
|
|
|
|
@classmethod
|
|
def execute_health_check(cls):
|
|
status = {'database': 'unknown'}
|
|
|
|
# Check DB connectivity
|
|
try:
|
|
LOG.debug("Health DB test starting")
|
|
db_api.retrieve_health_record()
|
|
status['database'] = 'passed'
|
|
|
|
except oslo_db.exception.DBConnectionError as dbex:
|
|
LOG.error('Health DB Test Exp in %s: %r',
|
|
cls.__name__, dbex, exc_info=True)
|
|
status['database'] = 'failed'
|
|
except Exception:
|
|
LOG.error('Unknown DB Test Exp in %s',
|
|
cls.__name__, exc_info=True)
|
|
status['database'] = 'failed'
|
|
|
|
return status
|