From cf25e2c2a28647d60ca5aa9f701d86de5207bc26 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Fri, 28 Mar 2025 19:12:48 +0100 Subject: dashboard/app: fix histogram numbers Some time ago we added the per-manager statistics. Histogram was broken since that moment. Closes #5867. --- dashboard/app/entities_spanner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/app/entities_spanner.go b/dashboard/app/entities_spanner.go index c550ef92e..df1bfeed7 100644 --- a/dashboard/app/entities_spanner.go +++ b/dashboard/app/entities_spanner.go @@ -42,7 +42,7 @@ select cast(sum(covered) as INTEGER) as covered from merge_history join files on merge_history.session = files.session -where namespace=$1 and duration>=$2 and duration<=$3 +where namespace=$1 and duration>=$2 and duration<=$3 and manager='*' group by dateto, duration`, Params: map[string]interface{}{ "p1": ns, -- cgit mrf-deployment