From 03ae9a6fbfc038dcdcd412b6ef67ae4e699efbe2 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Fri, 10 Mar 2017 10:52:01 -0500 Subject: [PATCH] Add statsd_prefix to nodepool_launcher.pp As part of our zuulv3 effort, we want to start testing statsd from nodepool-launcher. Expose the ability to prefix our requests, as not to affect production data. Change-Id: I943df7789cfa6c69f5c5d360c9b80af6328ca878 Depends-On: I8bef6aae5a566ff3a34e816ece14f9cfc1ef289d Signed-off-by: Paul Belanger --- manifests/nodepool_launcher.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/nodepool_launcher.pp b/manifests/nodepool_launcher.pp index b283a99..347ef26 100644 --- a/manifests/nodepool_launcher.pp +++ b/manifests/nodepool_launcher.pp @@ -23,6 +23,7 @@ class openstackci::nodepool_launcher ( $git_source_repo = 'https://git.openstack.org/openstack-infra/nodepool', $revision = 'master', $statsd_host = '', + $statsd_prefix = undef, $project_config_repo = '', $project_config_base = undef, $launcher_logging_conf_template = 'nodepool/nodepool-launcher.logging.conf.erb', @@ -50,6 +51,7 @@ class openstackci::nodepool_launcher ( class { '::nodepool::launcher': statsd_host => $statsd_host, + statsd_prefix => $statsd_prefix, launcher_logging_conf_template => $launcher_logging_conf_template, }