aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/fuzzer/queue/stats.go
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2024-10-14 22:44:07 +0200
committerTaras Madan <tarasmadan@google.com>2024-10-25 12:08:02 +0000
commit78ccf1e6b3d9e44604faf283b65faa3a5e0825f9 (patch)
treeb9d76d91556434ddbf543f241155ebe8affbb326 /pkg/fuzzer/queue/stats.go
parent45491cdceb1295e9120756b1615200b494a5f97b (diff)
pkg/rpcserver: take stats as a dependency
It will enable collecting statistics for several simultaneous RPCServer objects.
Diffstat (limited to 'pkg/fuzzer/queue/stats.go')
-rw-r--r--pkg/fuzzer/queue/stats.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/fuzzer/queue/stats.go b/pkg/fuzzer/queue/stats.go
index 3097ca2d6..9cc4c9e5c 100644
--- a/pkg/fuzzer/queue/stats.go
+++ b/pkg/fuzzer/queue/stats.go
@@ -7,10 +7,6 @@ import "github.com/google/syzkaller/pkg/stat"
// Common stats related to fuzzing that are updated/read by different parts of the system.
var (
- StatExecs = stat.New("exec total", "Total test program executions",
- stat.Console, stat.Rate{}, stat.Prometheus("syz_exec_total"))
- StatNumFuzzing = stat.New("fuzzing VMs", "Number of VMs that are currently fuzzing",
- stat.Console, stat.Link("/vms"))
StatNoExecRequests = stat.New("no exec requests",
"Number of times fuzzer was stalled with no exec requests", stat.Rate{})
StatNoExecDuration = stat.New("no exec duration",