jobs: include job duration and queue delay on /jobs page.

This commit is contained in:
evazion
2022-11-30 17:55:39 -06:00
parent a07e6667b4
commit ca0a4af455
4 changed files with 30 additions and 1 deletions

View File

@@ -32,6 +32,14 @@
<% t.column :status %>
<% t.column "Duration" do |job| %>
<%= duration_to_hhmmssms(job.job_duration) if job.job_duration %>
<% end %>
<% t.column "Queue Delay" do |job| %>
<%= duration_to_hhmmssms(job.queue_delay) if job.queue_delay %>
<% end %>
<% t.column "Created" do |job| %>
<%= time_ago_in_words_tagged(job.created_at) %>
<% end %>