Все проверки выполнены успешно
CI / test (push) Successful in 2m32s
Docker / Build and publish worker image (push) Successful in 18m17s
- reconnect safely after token rotation and retry leased results - reject malformed tasks and remove production cluster debug mutation - validate environment files and require immutable container images BREAKING CHANGE: Docker install, deploy, and Compose now require an immutable repository@sha256 image reference.
41 строка
1.2 KiB
HTML
41 строка
1.2 KiB
HTML
{{define "body"}}<section class="card">
|
|
<h1>Recent notifications</h1>
|
|
<p class="muted">Last 50 notification attempts emitted by this worker.</p>
|
|
<p><button type="button" disabled title="{{.ResendTooltip}}">Resend selected</button>
|
|
<span class="muted">{{.ResendTooltip}}</span></p>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Type</th>
|
|
<th>Details</th>
|
|
<th>Status</th>
|
|
<th>Duration</th>
|
|
<th>Error</th>
|
|
<th>When</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{range .Rows}}
|
|
<tr>
|
|
{{if .JobID}}
|
|
<td>delegated</td>
|
|
<td>job <code>{{.JobID}}</code>, {{.Method}}</td>
|
|
<td>{{.Status}}</td>
|
|
<td>{{.DurationMs}} ms</td>
|
|
<td></td>
|
|
{{else}}
|
|
<td>selfcheck</td>
|
|
<td>{{.Channel}} ({{.Kind}}): {{.Subject}} <code>{{.Body}}</code></td>
|
|
<td>{{if .OK}}<span class="ok">delivered</span>{{else}}<span class="error">failed</span>{{end}}</td>
|
|
<td>-</td>
|
|
<td>{{.Error}}</td>
|
|
{{end}}
|
|
<td>{{fmtTime .At}}</td>
|
|
</tr>
|
|
{{else}}
|
|
<tr><td colspan="6" class="muted">No notifications yet.</td></tr>
|
|
{{end}}
|
|
</tbody>
|
|
</table>
|
|
</section>{{end}}
|