From b0509813e8ad05c1befc5c90ac83f00641247d71 Mon Sep 17 00:00:00 2001 From: Dusan Jovanovic Date: Wed, 7 Mar 2018 16:26:40 -0800 Subject: [PATCH] agent6 config: include statsd forward params `statsd_forward_host` and `statsd_forward_port` are supported by agent6 so they should be included in the config file. --- manifests/init.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/init.pp b/manifests/init.pp index 700d1b19..609faa8c 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -523,6 +523,8 @@ 'dogstatsd_port' => $dogstatsd_port, 'dogstatsd_socket' => $dogstatsd_socket, 'dogstatsd_non_local_traffic' => $non_local_traffic, + 'statsd_forward_host' => $statsd_forward_host, + 'statsd_forward_port' => $statsd_forward_port, 'log_file' => $agent6_log_file, 'log_level' => $log_level, 'tags' => unique(flatten(union($_local_tags, $_facts_tags))),