From: yangyan Date: Tue, 2 Apr 2019 08:50:54 +0000 (+0800) Subject: add health check to vnflcm X-Git-Tag: 1.3.0~100^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vfc%2Fgvnfm%2Fvnflcm.git;a=commitdiff_plain;h=5ec57906678191b98514214adc9de895a05e6df8 add health check to vnflcm Change-Id: Ib7018aad0a8e27d34b92ce4a7b23cfc73635ff8b Issue-ID: VFC-1329 Signed-off-by: yangyan --- diff --git a/lcm/lcm/nf/urls.py b/lcm/lcm/nf/urls.py index c056eed7..2336cebb 100644 --- a/lcm/lcm/nf/urls.py +++ b/lcm/lcm/nf/urls.py @@ -21,6 +21,7 @@ from lcm.nf.views.subscriptions_view import SubscriptionsView from lcm.nf.views.heal_vnf_view import HealVnfView from lcm.nf.views.operate_vnf_view import OperateVnfView from lcm.nf.views.scale_vnf_view import ScaleVnfView +from lcm.nf.views.health_check import HealthCheckView from lcm.nf.views.lcm_op_occs_view import QueryMultiVnfLcmOpOccs, QuerySingleVnfLcmOpOcc urlpatterns = [ @@ -34,4 +35,7 @@ urlpatterns = [ url(r'^vnf_instances/(?P[0-9a-zA-Z_-]+)/scale$', ScaleVnfView.as_view()), url(r'^api/vnflcm/v1/vnf_lcm_op_occs$', QueryMultiVnfLcmOpOccs.as_view()), url(r'^api/vnflcm/v1/vnf_lcm_op_occs/(?P[0-9a-zA-Z_-]+)$', QuerySingleVnfLcmOpOcc.as_view()), + + # health check + url(r'^api/vnflcm/v1/healthcheck$', HealthCheckView.as_view()), ] diff --git a/lcm/lcm/nf/views/health_check.py b/lcm/lcm/nf/views/health_check.py new file mode 100644 index 00000000..9df01f2b --- /dev/null +++ b/lcm/lcm/nf/views/health_check.py @@ -0,0 +1,24 @@ +# Copyright (c) 2019, CMCC Technologies Co., Ltd. + +# 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 logging + +from rest_framework.views import APIView + +logger = logging.getLogger(__name__) + + +class HealthCheckView(APIView): + logger.debug("Health check") + pass