From 61d1beb284931d6cc182b60868626f5e2ed819e4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 22 Jun 2017 16:28:04 +0200 Subject: dashboard/app: new dashboard app The new app is based on our experience with syz-dash and is meant to supersede it. This app aims at full automation of bug lifecycle: reporting, tracking updates, closing fixed bugs. The main differences are: - this app has support for reporting bugs either by email or using an arbitrary external reporting system - this app tracks status of bugs - this app captures more info about kernel builds --- dashboard/app/bug.html | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 dashboard/app/bug.html (limited to 'dashboard/app/bug.html') diff --git a/dashboard/app/bug.html b/dashboard/app/bug.html new file mode 100644 index 000000000..94e59a90c --- /dev/null +++ b/dashboard/app/bug.html @@ -0,0 +1,42 @@ + + + + Syzkaller Dashboard + + + + {{template "header" .Header}} + + Title: {{.Bug.Title}}
+ Namespace: {{.Bug.Namespace}}
+ Crashes: {{.Bug.NumCrashes}}
+ First: {{formatTime .Bug.FirstTime}}
+ Last: {{formatTime .Bug.LastTime}}
+ Reporting: {{if .Bug.Link}}{{.Bug.Status}}{{else}}{{.Bug.Status}}{{end}}
+ Commits: {{.Bug.Commits}}
+ + + + + + + + + + + + + {{range $c := $.Crashes}} + + + + + + + + + + {{end}} +
Crashes:
ManagerTimeLogReportSyz reproC reproMaintainers
{{$c.Manager}}{{formatTime $c.Time}}{{if $c.LogLink}}log{{end}}{{if $c.ReportLink}}report{{end}}{{if $c.ReproSyzLink}}syz{{end}}{{if $c.ReproCLink}}C{{end}}{{$c.Maintainers}}
+ + -- cgit mrf-deployment