From 178d1817ae73a608cca97a8b0cccb470ce38a5ea Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Fri, 4 Dec 2015 17:54:20 -0500 Subject: [PATCH] Update subunit job name selection regex This commit updates the selection regex to be a bit more general an ensure that the subunit streams from all the gate tempest jobs are being picked up. There are certain jobs that don't start with gate-tempest-dsvm or gate-grenade-dsvm that we wanted to collect results for. For example the puppet jobs will be named something like: gate-puppet-openstack-integration-scenario001-tempest-dsvm-centos7 and those would not be picked up with the old regex. Change-Id: If68978679a9ebb6252663691b1850918db913990 --- .../openstack_project/files/logstash/jenkins-log-client.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/openstack_project/files/logstash/jenkins-log-client.yaml b/modules/openstack_project/files/logstash/jenkins-log-client.yaml index bdadbb1668..2d08cb01a8 100644 --- a/modules/openstack_project/files/logstash/jenkins-log-client.yaml +++ b/modules/openstack_project/files/logstash/jenkins-log-client.yaml @@ -14,10 +14,10 @@ zmq-publishers: subunit-files: - name: logs/testrepository.subunit retry-get: True - job-filter: 'gate-(tempest|grenade)-dsvm.*' + job-filter: '.*(tempest|grenade)-dsvm.*' build-queue-filter: 'gate' - name: logs/old/testrepository.subunit - job-filter: 'gate-grenade-dsvm.*' + job-filter: '.*grenade-dsvm.*' build-queue-filter: 'gate' - name: logs/testrepository.subunit retry-get: True