From a9377929df5f0bff3dd2c9667ee4f58ea95346b5 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Tue, 7 Jan 2014 08:17:40 -0800 Subject: [PATCH] Fix the e-r query for bug 1258682 The query for bug 1258682 uses wildcards and that doesn't work since wildcard analysis is disabled by default in elasticsearch for performance reasons. Looking at the query again, filtering on build_name is probably not necessary and actually limits the number of hits where we see the bug. When removing the build_name filters, there are more hits and on different jobs, i.e. gate-rally-py26 and gate-heat-py27 start showing hits. Closes-Bug: #1266833 Related-Bug: #1258682 Change-Id: Ib9c3bd05592f40d1bea8f4428e8e8fb0776cdcce --- queries/1258682.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/queries/1258682.yaml b/queries/1258682.yaml index 7deeac53..00dcdcd4 100644 --- a/queries/1258682.yaml +++ b/queries/1258682.yaml @@ -1,6 +1,4 @@ query: > message:"Build timed out (after" AND - message:"minutes). Marking the build as failed." AND ( - build_name:check-tempest-* OR build_name:gate-tempest-* OR - build_name:check-grenade-* OR build_name:gate-grenade-*) AND + message:"minutes). Marking the build as failed." AND filename:"console.html"