diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-04-15 14:54:59 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-04-16 14:20:36 +0000 |
| commit | 7e9780e93983e03547322aab489429ae4a7d2fa3 (patch) | |
| tree | 9bebbfce248f8350928fe0218ef080705ebcd484 /syz-manager/stats.go | |
| parent | 0e05124fa8b99e403da71f699481bf4096fa6997 (diff) | |
syz-manager, syz-fuzzer: send RPC notifications about executing programs
Instead of printing full program from the fuzzer,
send a short notification with program ID to the manager
and let manager emit the program into the log.
This significnatly reduces amount of communication
and makes it possible to not send text programs to the fuzzer at all.
Diffstat (limited to 'syz-manager/stats.go')
| -rw-r--r-- | syz-manager/stats.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/syz-manager/stats.go b/syz-manager/stats.go index b8e53e8f7..53373cf7e 100644 --- a/syz-manager/stats.go +++ b/syz-manager/stats.go @@ -78,9 +78,6 @@ func (mgr *Manager) initStats() { // Stats imported from the fuzzer (names must match the the fuzzer names). stats.Create("executor restarts", "Number of times executor process was restarted", stats.Rate{}, stats.Graph("executor")) - stats.Create("exec retries", - "Number of times a test program was restarted because the first run failed", - stats.Rate{}, stats.Graph("executor")) stats.Create("buffer too small", "Program serialization overflowed exec buffer", stats.NoGraph) stats.Create("no exec requests", "Number of times fuzzer was stalled with no exec requests", stats.Rate{}) stats.Create("no exec duration", "Total duration fuzzer was stalled with no exec requests (ns/sec)", stats.Rate{}) |
