github.com/google/syzkaller@v0.0.0-20251211124644-a066d2bc4b02/pkg/fuzzer/queue/stats.go (about)

     1  // Copyright 2024 syzkaller project authors. All rights reserved.
     2  // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
     3  
     4  package queue
     5  
     6  import "github.com/google/syzkaller/pkg/stat"
     7  
     8  // Common stats related to fuzzing that are updated/read by different parts of the system.
     9  var (
    10  	StatNoExecRequests = stat.New("no exec requests",
    11  		"Number of times fuzzer was stalled with no exec requests", stat.Rate{})
    12  	StatNoExecDuration = stat.New("no exec duration",
    13  		"Total duration fuzzer was stalled with no exec requests (ns/sec)", stat.Rate{})
    14  	StatExecBufferTooSmall = stat.New("buffer too small",
    15  		"Program serialization overflowed exec buffer", stat.NoGraph)
    16  )