From 4a71ac623f5560d8fc83f0840f7dded5775976ac Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 27 May 2024 16:55:58 +0200 Subject: dashboard/app: add bugs found per month graph Useful to estimate overall syzbot performance. --- dashboard/app/graph_bugs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dashboard/app/graph_bugs.html') diff --git a/dashboard/app/graph_bugs.html b/dashboard/app/graph_bugs.html index 55ce0dbab..03342614d 100644 --- a/dashboard/app/graph_bugs.html +++ b/dashboard/app/graph_bugs.html @@ -18,7 +18,7 @@ Bugs statistics graph. function drawCharts() { new google.visualization.LineChart(document.getElementById('graph_div')). draw(google.visualization.arrayToDataTable([ - ["-", {{range $.Graph.Headers}}"{{.}}", {{end}}], + ["-", {{range $.Graph.Headers}}"{{.Name}}", {{end}}], {{range $.Graph.Columns}}["{{.Hint}}", {{range .Vals}}{{.Val}},{{end}}],{{end}} ]), { width: "100%", -- cgit mrf-deployment