% add_to_head do %> <% end %>
<%= t('Worker') %> | <%= t('Date') %> | <%= t('Success') %> | <%= t('Failure') %> | <%= t('Total') %> | <%= t('TimeSec') %> | <%= t('AverageSec') %> | <%= t('MinTimeSec') %> | <%= t('MaxTimeSec') %> | <%= t('LastJobStatus') %> | <% @workers.each do |worker| %>
---|---|---|---|---|---|---|---|---|---|
<%= worker[:name] %> | <%= formate_date worker[:runtime][:last] %> | <%= worker[:number_of_calls][:success] %> | <%= worker[:number_of_calls][:failure] %> | <%= worker[:number_of_calls][:total] %> | <%= worker[:runtime][:total] %> | <%= worker[:runtime][:average] %> | <%= worker[:runtime][:min] %> | <%= worker[:runtime][:max] %> | <%= worker[:last_job_status] %> |