mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
[Webui] Add tag label to processes list
This commit is contained in:
parent
731a378118
commit
bbe348ac12
1 changed files with 2 additions and 1 deletions
|
@ -21,9 +21,10 @@
|
|||
<th><%= t('Busy') %></th>
|
||||
<th> </th>
|
||||
</thead>
|
||||
<% Sidekiq::ProcessSet.new.each_with_index do |process, index| %>
|
||||
<% Sidekiq::ProcessSet.new.each do |process| %>
|
||||
<tr>
|
||||
<td>
|
||||
<span class="label label-default"><%= process['tag'] %></span>
|
||||
<%= "#{process['hostname']}:#{process['pid']}" %>
|
||||
<% Array(process['labels']).each do |label| %>
|
||||
<span class="label label-info"><%= label %></span>
|
||||
|
|
Loading…
Add table
Reference in a new issue