aboutsummaryrefslogtreecommitdiffstats
path: root/lcm/ns/views/sol
diff options
context:
space:
mode:
authoryangyan <yangyanyj@chinamobile.com>2019-04-02 15:58:10 +0800
committerYan Yang <yangyanyj@chinamobile.com>2019-04-02 08:40:22 +0000
commite20ca8da02e880c97b5855157b0b07028dc79cdb (patch)
treea1929415450851e0c29b9741b391d343cea113ba /lcm/ns/views/sol
parent1ee4a11393e48d1b98649872a1fc383c46ea7475 (diff)
add health check
Change-Id: I5c11e56d59856d376317408603d0ab18501a0db5 Issue-ID: VFC-1329 Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'lcm/ns/views/sol')
-rw-r--r--lcm/ns/views/sol/health_check.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/lcm/ns/views/sol/health_check.py b/lcm/ns/views/sol/health_check.py
new file mode 100644
index 00000000..863ef597
--- /dev/null
+++ b/lcm/ns/views/sol/health_check.py
@@ -0,0 +1,24 @@
+# Copyright (c) 2018, 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