forked from linkedin/dr-elephant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
routes
69 lines (62 loc) · 4.52 KB
/
routes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#
# Copyright 2016 LinkedIn Corp.
#
# 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.
#
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~
# Application calls
GET / controllers.Application.dashboard()
GET /help controllers.Application.oldHelp()
GET /search controllers.Application.search()
GET /compare controllers.Application.compare()
GET /flowhistory controllers.Application.oldFlowHistory()
GET /jobhistory controllers.Application.oldJobHistory()
# Routes for new user interface
GET /newflowhistory controllers.Application.flowHistory()
GET /newjobhistory controllers.Application.jobHistory()
GET /newhelp controllers.Application.help()
# Rest calls
GET /rest/job controllers.Application.restAppResult(id: String, prioritize: Boolean ?= false)
GET /rest/jobexec controllers.Application.restJobExecResult(id: String)
GET /rest/flowexec controllers.Application.restFlowExecResult(id: String)
GET /rest/search controllers.Application.restSearch()
GET /rest/compare controllers.Application.restCompare()
GET /rest/flowgraphdata controllers.Application.restFlowGraphData(id: String)
GET /rest/jobgraphdata controllers.Application.restJobGraphData(id: String)
GET /rest/jobmetricsgraphdata controllers.Application.restJobMetricsGraphData(id: String)
GET /rest/flowmetricsgraphdata controllers.Application.restFlowMetricsGraphData(id: String)
GET /rest/dashboard-summaries controllers.api.v1.Web.restDashboardSummaries()
GET /rest/workflow-summaries controllers.api.v1.Web.restWorkflowSummariesForUser(username: String)
GET /rest/job-summaries controllers.api.v1.Web.restJobSummariesForUser(username: String)
GET /rest/application-summaries controllers.api.v1.Web.restApplicationSummariesForUser(username: String)
GET /rest/workflows controllers.api.v1.Web.restWorkflowFromFlowId(workflowid: String)
GET /rest/jobs controllers.api.v1.Web.restJobFromJobId(jobid: String)
GET /rest/applications controllers.api.v1.Web.restApplicationFromApplicationId(applicationid: String)
GET /rest/search-options controllers.api.v1.Web.restSearchOptions()
GET /rest/search-results controllers.api.v1.Web.search()
GET /rest/resourceusagedatabyuser controllers.Application.restResourceUsageDataByUser(startTime: String, endTime: String)
GET /rest/user-details controllers.api.v1.Web.restGetUsersSummaryStats()
GET /rest/workflow-exceptions controllers.api.v1.Web.restExceptions()
GET /rest/exception-statuses controllers.api.v1.Web.restExceptionStatuses()
POST /rest/getCurrentRunParameters controllers.Application.getCurrentRunParameters()
# Metrics calls
GET /ping controllers.MetricsController.ping()
GET /metrics controllers.MetricsController.index()
GET /tuneinmetrics controllers.AutoTuningMetricsController.index()
GET /healthcheck controllers.MetricsController.healthcheck()
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.at(path="/public", file)
GET /new controllers.Application.serveAsset(path="index.html")
GET /new/*path controllers.Application.serveAsset(path)