<%= t('Profiles') %> ?

<% @profiles = Sidekiq::ProfileSet.new %> <% if @profiles.size > 0 %>
<% @profiles.each do |record| %> <% end %>
<%= t('CreatedAt') %> <%= t('Type') %> <%= t('JID') %> <%= t('Token') %> <%= t('Size') %> <%= t('ElapsedTime') %>  
<%= relative_time(record.started_at) %> <%= record.type %> <%= record.jid %> <%= record.token %> <%= format_memory(record.size / 1024) %> <%= number_with_delimiter(record.elapsed, precision: 2) %> <% if config[:profile_store_url] %> <%= t("View") %> <% end %> <%= t("Data") %>
<% else %>
<%= t('NoDataFound') %>
<% end %>