blob: d8658a188a3f721fbb639f876cc20274932fb31d [file] [log] [blame]
Serge Bazanski77628312023-02-15 23:33:22 +01001{{ template "base.html" .Base }}
2<h2>Machine List</h2>
3<p>
4 Click on a Machine ID to explore it further. Commonly viewed tags are expanded.
5</p>
6<table>
7 <tr>
8 <th>Machine ID</th>
9 <th>Work</th>
10 <th>Backoffs</th>
11 <th>Tags</th>
12 </tr>
13 {{ range .Machines -}}
14 <tr>
15 <td class="mono"><a href="/machine/{{ .ID }}">{{ .ID }}</a></td>
16 <td>
17 {{- range $process, $work := .Work -}}
18 <b><a href="/session/{{ $work.SessionID }}">{{ $process }}</a></b>
19 {{- end -}}
20 </td>
21 <td>
22 {{- range $process, $backoff := .Backoffs -}}
23 <b>{{ $backoff.Process }}</b>(<span class="small">{{ summarizeError .Cause }}</span>)
24 {{- end -}}
25 </td>
26 <td>
27 {{- range $name, $tag := .Tags -}}
28 {{- template "fragment_tag.html" $tag -}}
29 {{- end -}}
30 </td>
31 </tr>
32 {{ end -}}
33</table>
34<p class="small faint mono">
35 {{ .NMachines }} rows, rendered in {{ .RenderTime }}. Query: {{ .Query }}
36</p>