From 287d6acfa17f708fb2d6aecfa4de231a41a1dd12 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 2 Sep 2024 11:53:30 +0200 Subject: pkg/fuzzer: display hints job info This will let us gain even more insight into what the fuzzer is doing. --- pkg/fuzzer/stats.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pkg/fuzzer/stats.go') diff --git a/pkg/fuzzer/stats.go b/pkg/fuzzer/stats.go index f0039d500..7990f8b13 100644 --- a/pkg/fuzzer/stats.go +++ b/pkg/fuzzer/stats.go @@ -41,8 +41,9 @@ func newStats() Stats { statJobsSmash: stat.New("smash jobs", "Running smash jobs", stat.StackedGraph("jobs"), stat.Link("/jobs?type=smash")), statJobsFaultInjection: stat.New("fault jobs", "Running fault injection jobs", stat.StackedGraph("jobs")), - statJobsHints: stat.New("hints jobs", "Running hints jobs", stat.StackedGraph("jobs")), - statExecTime: stat.New("prog exec time", "Test program execution time (ms)", stat.Distribution{}), + statJobsHints: stat.New("hints jobs", "Running hints jobs", stat.StackedGraph("jobs"), + stat.Link("/jobs?type=hints")), + statExecTime: stat.New("prog exec time", "Test program execution time (ms)", stat.Distribution{}), statExecGenerate: stat.New("exec gen", "Executions of generated programs", stat.Rate{}, stat.StackedGraph("exec")), statExecFuzz: stat.New("exec fuzz", "Executions of mutated programs", -- cgit mrf-deployment