1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/web/views/_summary.erb

35 lines
1.2 KiB
Text
Raw Normal View History

2013-10-01 00:43:24 -04:00
<ul class="list-unstyled summary row">
<li class="processed col-sm-2">
2013-08-21 18:38:52 -04:00
<span class="count"><%= number_with_delimiter(stats.processed) %></span>
<span class="desc"><%= t('Processed') %></span>
</li>
2013-10-01 00:43:24 -04:00
<li class="failed col-sm-2">
2013-08-21 18:38:52 -04:00
<span class="count"><%= number_with_delimiter(stats.failed) %></span>
<span class="desc"><%= t('Failed') %></span>
</li>
2013-10-01 00:43:24 -04:00
<li class="busy col-sm-2">
<a href="<%= root_path %>workers">
<span class="count"><%= number_with_delimiter(workers_size) %></span>
<span class="desc"><%= t('Busy') %></span>
</a>
2013-08-21 18:38:52 -04:00
</li>
<li class="enqueued col-sm-2">
<a href="<%= root_path %>queues">
<span class="count"><%= number_with_delimiter(stats.enqueued) %></span>
<span class="desc"><%= t('Enqueued') %></span>
</a>
2013-08-21 18:38:52 -04:00
</li>
2013-10-01 00:43:24 -04:00
<li class="retries col-sm-2">
<a href="<%= root_path %>retries">
<span class="count"><%= number_with_delimiter(stats.retry_size) %></span>
<span class="desc"><%= t('Retries') %></span>
</a>
2013-08-21 18:38:52 -04:00
</li>
<li class="scheduled col-sm-2">
<a href="<%= root_path %>scheduled">
<span class="count"><%= number_with_delimiter(stats.scheduled_size) %></span>
<span class="desc"><%= t('Scheduled') %></span>
</a>
2013-08-21 18:38:52 -04:00
</li>
</ul>