summaryrefslogtreecommitdiffstats
path: root/result_collection_api/opnfv_testapi/router
diff options
context:
space:
mode:
authorSerenaFeng <feng.xiaowei@zte.com.cn>2016-09-22 17:10:35 +0800
committerSerenaFeng <feng.xiaowei@zte.com.cn>2016-09-22 17:10:35 +0800
commitf63c33560d084bb2f5bd773bf6e51f3d04e44e64 (patch)
treee2fcfcfc2da8a793ea42cd0890746e0004e5c115 /result_collection_api/opnfv_testapi/router
parent71edb3b92cbbf4a4f648dc4442efea29b76a157e (diff)
Remove Brhamaputra dashboard process from testapi
Now, ELK is the framework used for dashboarding JIRA: FUNCTEST-489 Change-Id: I51e8bc83e7309a226515f603eb4c468b7e7a69bd Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'result_collection_api/opnfv_testapi/router')
-rw-r--r--result_collection_api/opnfv_testapi/router/url_mappings.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/result_collection_api/opnfv_testapi/router/url_mappings.py b/result_collection_api/opnfv_testapi/router/url_mappings.py
index 695c27d..eb648ec 100644
--- a/result_collection_api/opnfv_testapi/router/url_mappings.py
+++ b/result_collection_api/opnfv_testapi/router/url_mappings.py
@@ -14,8 +14,6 @@ from opnfv_testapi.resources.project_handlers import ProjectCLHandler, \
ProjectGURHandler
from opnfv_testapi.resources.result_handlers import ResultsCLHandler, \
ResultsGURHandler
-from opnfv_testapi.resources.dashboard_handlers import DashboardHandler, \
- DashboardProjectsHandler
mappings = [
@@ -47,12 +45,4 @@ mappings = [
# (project, case, and pod)
(r"/api/v1/results", ResultsCLHandler),
(r"/api/v1/results/([^/]+)", ResultsGURHandler),
-
- # Method to manage Dashboard ready results
- # GET /dashboard?project=functest&case=vPing&pod=opnfv-jump2
- # => get results in dasboard ready format
- # get /dashboard
- # => get the list of project with dashboard ready results
- (r"/dashboard/v1/results", DashboardHandler),
- (r"/dashboard/v1/projects", DashboardProjectsHandler),
]