diff options
Diffstat (limited to 'pkg/fuzzer/stats.go')
| -rw-r--r-- | pkg/fuzzer/stats.go | 5 |
1 files changed, 3 insertions, 2 deletions
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", |
