Repository: kylin Updated Branches: refs/heads/master c72e23202 -> 83ea85174
KYLIN-2300 show waiting time for each build step Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/83ea8517 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/83ea8517 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/83ea8517 Branch: refs/heads/master Commit: 83ea85174eb1bd379c2183fc2c9ff465a8c6267d Parents: c72e232 Author: Billy Liu <[email protected]> Authored: Tue Dec 20 21:01:08 2016 +0800 Committer: Billy Liu <[email protected]> Committed: Tue Dec 20 21:01:08 2016 +0800 ---------------------------------------------------------------------- webapp/app/partials/jobs/job_steps.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/83ea8517/webapp/app/partials/jobs/job_steps.html ---------------------------------------------------------------------- diff --git a/webapp/app/partials/jobs/job_steps.html b/webapp/app/partials/jobs/job_steps.html index a2c3504..f451805 100644 --- a/webapp/app/partials/jobs/job_steps.html +++ b/webapp/app/partials/jobs/job_steps.html @@ -107,6 +107,8 @@ </div> <span style="color: #4383B4">Duration: </span> {{step.exec_start_time != 0 ? (step.exec_end_time != 0 ? ((step.exec_end_time - step.exec_start_time)/1000/60 | number:2) + ' mins' : '0 seconds') : '0 seconds'}} + <span style="color: #4383B4">Waiting: </span> + {{(step.exec_wait_time > 60)? (step.exec_wait_time/60 | number:2) + ' mins': step.exec_wait_time + ' seconds'}}<br> </div> <div class="timeline-footer"> <a ng-if="step.exec_cmd && userService.hasRole('ROLE_ADMIN')" @@ -126,7 +128,7 @@ <i class="ace-icon fa fa-tasks yellow bigger-110"></i> </a> <a ng-if="config.reference_links && config.reference_links['diagnostic'].link" href="{{config.reference_links['diagnostic'].link + step.info.mr_job_id}}" target="_blank" - tooltip="Eagle Monitoring"> + tooltip="Monitoring"> <i class="ace-icon fa fa-chain grey bigger-110"></i> </a> </div>
