Add statsd configuration for user to modify

Change-Id: Iaf1f5815fea8d6d8bd3b517c65d0d18f273cb6a1
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2019-03-18 09:50:05 -04:00
parent 062f4a9c8d
commit 5df6b63cf8
2 changed files with 9 additions and 1 deletions

View File

@ -13,7 +13,7 @@
# under the License.
---
# windmill.statsd
statsd_file_config_js_src: statsd/etc/statsd/config.js.j2
statsd_file_config_js_src: "{{ windmill_config_git_dest }}/statsd/etc/statsd/config.js.j2"
# openstack.logrotate
logrotate_configs:

View File

@ -0,0 +1,8 @@
{
{% if ansible_host | ipv6 %}
address_ipv6: true,
{% endif %}
backends: [ "./backends/console" ],
host: "{{ ansible_host }}",
port: 8125
}