From f56b4dcc82d7af38bf94d643c5750cf49a91a297 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 19 Nov 2024 16:42:32 +0100 Subject: pkg/manager: show number of times coverage for each call has overflowed If the overflows happen often, it's bad. Add visibility into this. --- pkg/manager/html/syscalls.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'pkg/manager/html/syscalls.html') diff --git a/pkg/manager/html/syscalls.html b/pkg/manager/html/syscalls.html index e3edfcabf..d16337978 100644 --- a/pkg/manager/html/syscalls.html +++ b/pkg/manager/html/syscalls.html @@ -9,7 +9,9 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the Syscall Inputs Total - Coverage + Coverage + Cover overflows + Comps overflows Prio {{range $c := $.Calls}} @@ -18,6 +20,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the {{$c.Inputs}} {{$c.Total}} {{$c.Cover}} + {{$c.CoverOverflows}} + {{$c.CompsOverflows}} prio {{end}} -- cgit mrf-deployment