aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/main.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-05-27 16:55:58 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-05-31 10:18:05 +0000
commit4a71ac623f5560d8fc83f0840f7dded5775976ac (patch)
tree58efe436722445c3dbb69e44bf79970a25e02db8 /dashboard/app/main.go
parent0c378259b1aa20c6bed6c2efd19198c0303bd18b (diff)
dashboard/app: add bugs found per month graph
Useful to estimate overall syzbot performance.
Diffstat (limited to 'dashboard/app/main.go')
-rw-r--r--dashboard/app/main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/dashboard/app/main.go b/dashboard/app/main.go
index 2ac74af27..4e26fb86b 100644
--- a/dashboard/app/main.go
+++ b/dashboard/app/main.go
@@ -63,6 +63,7 @@ func initHTTPHandlers() {
http.Handle("/"+ns+"/graph/lifetimes", handlerWrapper(handleGraphLifetimes))
http.Handle("/"+ns+"/graph/fuzzing", handlerWrapper(handleGraphFuzzing))
http.Handle("/"+ns+"/graph/crashes", handlerWrapper(handleGraphCrashes))
+ http.Handle("/"+ns+"/graph/found-bugs", handlerWrapper(handleFoundBugsGraph))
http.Handle("/"+ns+"/repos", handlerWrapper(handleRepos))
http.Handle("/"+ns+"/bug-summaries", handlerWrapper(handleBugSummaries))
http.Handle("/"+ns+"/subsystems", handlerWrapper(handleSubsystemsList))