aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/fuzzer
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-04-10 11:56:07 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-04-10 10:08:26 +0000
commit4320ec32bd44793e077a482003409ae791e1dfea (patch)
tree8c7cd16a538841f18e69b1fe72bc98e190f8738b /pkg/fuzzer
parent20a08e76bdb980262f5760bd4fb61bdf80588edb (diff)
pkg/fuzzer: restore printing of triage queue to console
Diffstat (limited to 'pkg/fuzzer')
-rw-r--r--pkg/fuzzer/stats.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/fuzzer/stats.go b/pkg/fuzzer/stats.go
index 38bef0405..c860b8bb9 100644
--- a/pkg/fuzzer/stats.go
+++ b/pkg/fuzzer/stats.go
@@ -27,7 +27,7 @@ type Stats struct {
func newStats() Stats {
return Stats{
StatCandidates: stats.Create("candidates", "Number of candidate programs in triage queue",
- stats.Graph("corpus")),
+ stats.Console, stats.Graph("corpus")),
statNewInputs: stats.Create("new inputs", "Potential untriaged corpus candidates",
stats.Graph("corpus")),
statJobs: stats.Create("fuzzer jobs", "Total running fuzzer jobs", stats.NoGraph),