
Change-Id: Ia997aa0a9b9388be0e8f72b633b3b9cc25b4429c Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
32 lines
634 B
YAML
32 lines
634 B
YAML
---
|
|
|
|
- name: Load apm-server Dashboards
|
|
hosts: apm-server[0]
|
|
gather_facts: false
|
|
vars_files:
|
|
- vars/variables.yml
|
|
|
|
pre_tasks:
|
|
- include_tasks: common_task_data_node_hosts.yml
|
|
tags:
|
|
- always
|
|
|
|
tasks:
|
|
- name: Load templates
|
|
shell: >-
|
|
apm-server setup
|
|
{{ item }}
|
|
-E 'apm-server.host=localhost:8200'
|
|
-E 'output.elasticsearch.hosts={{ coordination_nodes | to_json }}'
|
|
-e -v
|
|
with_items:
|
|
- "--template"
|
|
- "--dashboards"
|
|
register: templates
|
|
until: templates is success
|
|
retries: 5
|
|
delay: 5
|
|
|
|
tags:
|
|
- beat-setup
|