From 312699d7f4fcaf0e1a7a007f15195e770a99b3c2 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 22 Jan 2024 14:29:41 +0100 Subject: dashboard: capture cover and PCs after corpus triage This statistics allows us to better estimate the amount of coverage that is lost after every syzbot instance is restarted. --- dashboard/dashapi/dashapi.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'dashboard/dashapi/dashapi.go') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index aaaf3edfa..520a991fc 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -725,6 +725,10 @@ type ManagerStatsReq struct { Crashes uint64 SuppressedCrashes uint64 Execs uint64 + + // Non-zero only when set. + TriagedCoverage uint64 + TriagedPCs uint64 } func (dash *Dashboard) UploadManagerStats(req *ManagerStatsReq) error { -- cgit mrf-deployment