1 <%# Copyright (C) The Arvados Authors. All rights reserved.
3 SPDX-License-Identifier: AGPL-3.0 %>
5 <div class="compute-summary-numbers">
12 <th>Pending containers</th>
13 <th>Running containers</th>
16 <% pending_containers = Container.order("created_at asc").filter([["state", "in", ["Queued", "Locked"]], ["priority", ">", 0]]).limit(1) %>
17 <% running_containers = Container.order("started_at asc").where(state: "Running").limit(1) %>
18 <td><%= pending_containers.items_available %></td>
19 <td><%= running_containers.items_available %></td>
22 <th>Oldest pending</th>
23 <th>Longest running</th>
26 <td><% if pending_containers.first then %>
27 <%= link_to_if_arvados_object pending_containers.first, link_text: render_runtime(Time.now - pending_containers.first.created_at, false, false) %>
33 <td><% if running_containers.first then %>
34 <%= link_to_if_arvados_object running_containers.first, link_text: render_runtime(Time.now - running_containers.first.created_at, false, false) %>