aboutsummaryrefslogtreecommitdiffstats
path: root/syz-cluster/dashboard
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2025-07-24 14:56:14 +0200
committerAleksandr Nogikh <nogikh@google.com>2025-07-28 12:51:01 +0000
commit731ddf3b139ae1e3c6454cd34c6c4f7519d9a840 (patch)
tree09d9c2a2952b0e3fe64e68b141bd468590dc30a2 /syz-cluster/dashboard
parent9147e929949f0f64b2cb12f6346c5f9c5a532c63 (diff)
syz-cluster: always upload triage logs
We used to only upload them on triage failure, but let's improve the inspectability even for successfully finished triage jobs. Slightly refactor the controller API around the triage result submission.
Diffstat (limited to 'syz-cluster/dashboard')
-rw-r--r--syz-cluster/dashboard/templates/series.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/syz-cluster/dashboard/templates/series.html b/syz-cluster/dashboard/templates/series.html
index 35961d1ba..31eaebc8f 100644
--- a/syz-cluster/dashboard/templates/series.html
+++ b/syz-cluster/dashboard/templates/series.html
@@ -96,11 +96,11 @@
<th>Status</th>
<td>{{.Status}}</td>
</tr>
- {{if not .SkipReason.IsNull}}
+ {{if or (not .SkipReason.IsNull) .TriageLogURI}}
<tr>
- <th>Skipped</th>
+ <th>Triaged</th>
<td>
- {{.SkipReason.StringVal}}
+ {{if not .SkipReason.IsNull}}Skipped: {{.SkipReason.StringVal}}{{else}}OK{{end}}
{{if .TriageLogURI}}
<a href="/sessions/{{.ID}}/triage_log">[Log]</a>
{{end}}