Queue

<% queue = queued_processes %> <% if queue.any? %> <% queue.each do |p| %> <% wu = p.work_unit %>
<%= link_to_if_arvados_object p, friendly_name: true %>
<%= render_localized_date(p.created_at) %>
<%= render_runtime(Time.now - p.created_at, false) %>
<%= p.priority %>
<% end %>
Process
Submitted
Queued
Priority
<% if Job.queue_size > queue.size %> Note: some items in the queue are not visible to you. <% end %>
<% else %> There are currently no processes in your queue. <% end %>

Node status

<% nodes.sort_by { |n| n.hostname || "" }.each do |n| %> <% if n.crunch_worker_state.in? ["busy", "idle"] and (Time.now - n[:last_ping_at]) < 3600 %>
<%= n.hostname %>
state: <%= n.crunch_worker_state %>
<% [:total_cpu_cores, :total_ram_mb, :total_scratch_mb].each do |i| %> <%= i.to_s.gsub '_', ' ' %>: <%= n.properties[i] %>
<% end %>
<% end %> <% end %>