diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-09-22 17:10:35 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2016-09-22 17:10:35 +0800 |
commit | 1610dc693ecee88a4fe5f8a2127e31386c39c923 (patch) | |
tree | fc608c16504a8760b2b57287962cd4abc9594b29 /utils/test/result_collection_api/opnfv_testapi/router | |
parent | 9f7616b1e09a5d1aa2828f91c2b6f0e534e7a85f (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 'utils/test/result_collection_api/opnfv_testapi/router')
-rw-r--r-- | utils/test/result_collection_api/opnfv_testapi/router/url_mappings.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/utils/test/result_collection_api/opnfv_testapi/router/url_mappings.py b/utils/test/result_collection_api/opnfv_testapi/router/url_mappings.py index 695c27de1..eb648ecbb 100644 --- a/utils/test/result_collection_api/opnfv_testapi/router/url_mappings.py +++ b/utils/test/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), ] |