X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/9ce68afa9f3f1b558acd19561760c19e35b8a356..bdbcc4024e4320e17634fdfbdeb48a6051b0fccd:/apps/workbench/app/views/pipeline_instances/_show_components_running.html.erb diff --git a/apps/workbench/app/views/pipeline_instances/_show_components_running.html.erb b/apps/workbench/app/views/pipeline_instances/_show_components_running.html.erb index c4b0f4a924..a4eb6ffb2a 100644 --- a/apps/workbench/app/views/pipeline_instances/_show_components_running.html.erb +++ b/apps/workbench/app/views/pipeline_instances/_show_components_running.html.erb @@ -41,9 +41,9 @@ end %> <%= if walltime > runningtime - render_runtime(walltime, true, false) + render_runtime(walltime, false) else - render_runtime(runningtime, true, false) + render_runtime(runningtime, false) end %><% if @object.finished_at %> at <%= render_localized_date(@object.finished_at) %><% end %>. <% else %> This pipeline is <%= if @object.state.start_with? 'Running' then 'active' else @object.state.downcase end %>. @@ -66,16 +66,16 @@ <% cputime = pipeline_jobs.map { |j| if j[:job][:started_at] - (j[:job][:runtime_constraints].andand[:min_nodes] || 1) * ((j[:job][:finished_at] || Time.now()) - j[:job][:started_at]) + (j[:job][:runtime_constraints].andand[:min_nodes] || 1).to_i * ((j[:job][:finished_at] || Time.now()) - j[:job][:started_at]) else 0 end }.reduce(:+) || 0 %> - <%= render_runtime(runningtime, true, false) %><% if (walltime - runningtime) > 0 %> - (<%= render_runtime(walltime - runningtime, true, false) %> queued)<% end %><% if cputime == 0 %>.<% else %> + <%= render_runtime(runningtime, false) %><% if (walltime - runningtime) > 0 %> + (<%= render_runtime(walltime - runningtime, false) %> queued)<% end %><% if cputime == 0 %>.<% else %> and used - <%= render_runtime(cputime, true, false) %> - of total time on the nodes (<%= (cputime/runningtime).round(1) %>⨯ scaling). + <%= render_runtime(cputime, false) %> + of node allocation time (<%= (cputime/runningtime).round(1) %>⨯ scaling). <% end %>

@@ -97,5 +97,5 @@ %> <% pipeline_jobs.each_with_index do |pj, i| %> - <%= render partial: 'running_component', locals: {pj: pj, i: i, expanded: false} %> + <%= render partial: 'running_component', locals: {pj: pj, i: i, expanded: false, pipeline_display: true} %> <% end %>