diff options
author | yunlong ying <ying.yunlong@zte.com.cn> | 2019-04-02 09:19:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-02 09:19:27 +0000 |
commit | e7891e6a0d35b2d427305fdfdc63aba6ea79a0cb (patch) | |
tree | 03187cf47a2b3c7e26b73f4097a322a378bc89dc /lcm | |
parent | 8dabdab1970c332ed66a6f815608cc06f254fdff (diff) | |
parent | 5ec57906678191b98514214adc9de895a05e6df8 (diff) |
Merge "add health check to vnflcm"
Diffstat (limited to 'lcm')
-rw-r--r-- | lcm/lcm/nf/urls.py | 4 | ||||
-rw-r--r-- | lcm/lcm/nf/views/health_check.py | 24 |
2 files changed, 28 insertions, 0 deletions
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<instanceid>[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<lcmopoccid>[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 |