diff --git a/backend/btrixcloud/pages.py b/backend/btrixcloud/pages.py index 414a898a..dadb0e22 100644 --- a/backend/btrixcloud/pages.py +++ b/backend/btrixcloud/pages.py @@ -577,7 +577,13 @@ class PageOps: boundaries.append(1.1) aggregate = [ - {"$match": {"crawl_id": crawl_id}}, + { + "$match": { + "crawl_id": crawl_id, + "isFile": {"$ne": True}, + "isError": {"$ne": True}, + } + }, { "$bucket": { "groupBy": f"$qa.{qa_run_id}.{key}",