1
0
Fork 0
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:
Abdelkader Boudih 2014-08-06 11:24:19 +00:00
parent 731a378118
commit bbe348ac12

View file

@ -21,9 +21,10 @@
<th><%= t('Busy') %></th>
<th>&nbsp;</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>