add health check to vnflcm 42/83942/2
authoryangyan <yangyanyj@chinamobile.com>
Tue, 2 Apr 2019 08:50:54 +0000 (16:50 +0800)
committerYan Yang <yangyanyj@chinamobile.com>
Tue, 2 Apr 2019 09:09:54 +0000 (09:09 +0000)
Change-Id: Ib7018aad0a8e27d34b92ce4a7b23cfc73635ff8b
Issue-ID: VFC-1329
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
lcm/lcm/nf/urls.py
lcm/lcm/nf/views/health_check.py [new file with mode: 0644]

index c056eed..2336ceb 100644 (file)
@@ -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 (file)
index 0000000..9df01f2
--- /dev/null
@@ -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