From e894953c0c45c8a6d676292a81da90a615133b1c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 21 Feb 2021 08:28:32 +0100 Subject: dashboard/app: save suppressed reports Save suppressed reports into a special single bucked "suppressed report". This will allow some control and monitoring over frequency and will allow to see samples. Fixes #1941 --- dashboard/dashapi/dashapi.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'dashboard/dashapi/dashapi.go') diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index c62d53c3e..148b7d710 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -238,6 +238,7 @@ type Crash struct { Title string AltTitles []string // alternative titles, used for better deduplication Corrupted bool // report is corrupted (corrupted title, no stacks, etc) + Suppressed bool Maintainers []string // deprecated in favor of Recipients Recipients Recipients Log []byte @@ -264,6 +265,7 @@ type CrashID struct { BuildID string Title string Corrupted bool + Suppressed bool MayBeMissing bool } -- cgit mrf-deployment