diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-05-21 09:36:19 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-21 09:46:36 +0000 |
| commit | 5546e69adad6744befb5bc74a32763d20c7db4a6 (patch) | |
| tree | e5609b2cf1cf2007eeef215dafc2baac91483384 /syz-manager/stats.go | |
| parent | 780a5444026e461c8be27b8615a81360310582e7 (diff) | |
syz-manager: make num fuzzing stat more precise
Make num fuzzing VMs stat more precise:
increment when the VM is actually ready to execute test programs,
decrement as soon as we see oops in console output.
Also show it on graphs.
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 77982434f..322782c30 100644 --- a/syz-manager/stats.go +++ b/syz-manager/stats.go @@ -12,7 +12,6 @@ import ( ) type Stats struct { - statNumFuzzing *stats.Val statNumReproducing *stats.Val statExecs *stats.Val statCrashes *stats.Val @@ -24,8 +23,6 @@ type Stats struct { } func (mgr *Manager) initStats() { - mgr.statNumFuzzing = stats.Create("VMs", "Number of VMs that are currently fuzzing", - stats.Console, stats.NoGraph) mgr.statNumReproducing = stats.Create("reproducing", "Number of crashes being reproduced", stats.Console, stats.NoGraph) mgr.statExecs = stats.Create("exec total", "Total test program executions", |
