From 9229117aba726f954e047990d04fcb6764de10e8 Mon Sep 17 00:00:00 2001 From: Matt Riedemann Date: Fri, 4 Jan 2019 14:49:59 -0500 Subject: [PATCH] Update elastic-recheck jobs_re config With zuul v3 lots of jobs have been renamed and the old "dsvm" isn't really standard practice anymore, which means elastic recheck skips processing for lots of failed jobs that would otherwise have hits, including tempest-full and our grenade jobs. This updates the regex to include devstack|tempest|grenade at a minimum and leaves a TODO since there clearly lots of other voting jobs which have categorized failures but aren't being processed. Change-Id: I21e3d1058615321f84a00eab9d3dface7418fcc1 --- templates/elastic-recheck.conf.erb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/elastic-recheck.conf.erb b/templates/elastic-recheck.conf.erb index 745c9c4..d7827bf 100644 --- a/templates/elastic-recheck.conf.erb +++ b/templates/elastic-recheck.conf.erb @@ -19,4 +19,7 @@ ls_url=<%= @logstash_url %> db_uri=<%= @subunit2sql_db_uri %> [recheckwatch] -jobs_re=(dsvm|tripleo) +# TODO(mriedem): With zuul v3 there is a wild west of job names so this +# regex is table stakes, but there are clearly things missing from this like +# the various nova-* jobs (nova-multiattach, nova-live-migration, nova-next). +jobs_re=(dsvm|tripleo|devstack|tempest|grenade)