Sha256: bb85848346cdbcd3d9c0c947ab4e9ea7d01288f63fd6ae89b2343ad42b4a7ff7

Contents?: true

Size: 1010 Bytes

Versions: 6

Compression:

Stored size: 1010 Bytes

Contents

<table class="table table-hover table-bordered table-striped table-white">
  <thead>
    <tr>
      <th>JID</th>
      <th>Class</th>
      <th>Queue</th>
      <th>Status</th>
      <th>Enqueued at</th>
      <th>Run at</th>
      <th>Completed at</th>
      <th>Failed at</th>
      <th>Other</th>
    </tr>
  </thead>

  <tbody>
    <% jobs.each do |job| %>
      <tr>
        <% info = job.info %>
        <td>
          <a href="<%= job_url(job) %>">
            <%= job.jid %>
          </a>
        </td>
        <td><%= info['class'] %></td>
        <td><%= info['queue'] %></td>
        <td>
          <span class="label label-<%= bootstrap_status(job.status) %>">
            <%= job.status %>
          </span>
        </td>
        <td><%= job.enqueued_at %></td>
        <td><%= job.run_at %></td>
        <td><%= job.complete_at %></td>
        <td><%= job.failed_at %></td>
        <td><%= info.reject {|k,v| ['class', 'queue'].include?(k)} %></td>
      </tr>
    <% end %>
  </tbody>
</table>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sidekiq-hierarchy-2.1.0 web/views/_job_table.erb
sidekiq-hierarchy-2.0.1 web/views/_job_table.erb
sidekiq-hierarchy-2.0.0 web/views/_job_table.erb
sidekiq-hierarchy-1.1.0 web/views/_job_table.erb
sidekiq-hierarchy-1.0.0 web/views/_job_table.erb
sidekiq-hierarchy-0.1.4 web/views/_job_table.erb