8d91d91108
Expose the ability to override our statsd_prefix, which defaults to none. Change-Id: I8bef6aae5a566ff3a34e816ece14f9cfc1ef289d Signed-off-by: Paul Belanger <pabelanger@redhat.com>
9 lines
320 B
Plaintext
9 lines
320 B
Plaintext
<% if @statsd_host != nil && @statsd_host != "" -%>
|
|
export STATSD_HOST=<%= @statsd_host %>
|
|
export STATSD_PORT=8125
|
|
<% end -%>
|
|
<% if @statsd_prefix != nil && @statsd_prefix != "" -%>
|
|
export STATSD_PREFIX=<%= @statsd_prefix %>
|
|
<% end -%>
|
|
DAEMON_ARGS="-c /etc/nodepool/nodepool.yaml -l /etc/nodepool/launcher-logging.conf"
|