<%# Copyright (C) The Arvados Authors. All rights reserved. SPDX-License-Identifier: AGPL-3.0 %>
<% pending_containers = Container.order("created_at asc").filter([["state", "in", ["Queued", "Locked"]], ["priority", ">", 0]]).limit(1) %> <% running_containers = Container.order("started_at asc").where(state: "Running").limit(1) %>
Pending containers Running containers
<%= pending_containers.items_available %> <%= running_containers.items_available %>
Oldest pending Longest running
<% if pending_containers.first then %> <%= link_to_if_arvados_object pending_containers.first, link_text: render_runtime(Time.now - pending_containers.first.created_at, false, false) %> <% else %> - <% end %> <% if running_containers.first then %> <%= link_to_if_arvados_object running_containers.first, link_text: render_runtime(Time.now - running_containers.first.created_at, false, false) %> <% else %> - <% end %>