From b330bb1f559873215236ca1432bdd813aacf9a6c Mon Sep 17 00:00:00 2001 From: Joe Gordon Date: Fri, 17 Jan 2014 10:35:36 -0500 Subject: [PATCH] Record build_branch in logstash Since some bugs are branch specific we want to write logstash queries that use the branch, so log ZUUL_BRANCH as build_branch in logstash. From zuul's launchers doc: ZUUL_BRANCH: The target branch for the change that triggered this build Change-Id: Ic408afb235be5716231c663616c17a98ef6f8870 --- modules/log_processor/files/log-gearman-client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/log_processor/files/log-gearman-client.py b/modules/log_processor/files/log-gearman-client.py index 3c9d5b6e77..0f8fbfcac6 100644 --- a/modules/log_processor/files/log-gearman-client.py +++ b/modules/log_processor/files/log-gearman-client.py @@ -91,6 +91,7 @@ class EventProcessor(threading.Thread): fields["build_uuid"] = parameters.get("ZUUL_UUID", "UNKNOWN") fields["build_queue"] = parameters.get("ZUUL_PIPELINE", "UNKNOWN") fields["build_ref"] = parameters.get("ZUUL_REF", "UNKNOWN") + fields["build_branch"] = parameters.get("ZUUL_BRANCH", "UNKNOWN") if parameters.get("ZUUL_CHANGE"): fields["build_change"] = parameters.get("ZUUL_CHANGE", "UNKNOWN") fields["build_patchset"] = parameters.get("ZUUL_PATCHSET",