2019-04-22 15:01:56 -07:00
|
|
|
---
|
|
|
|
# This will install all the client parts needed for elastic to monitor client computers
|
|
|
|
|
|
|
|
- name: Install elastic client programs
|
2019-04-23 12:21:00 -07:00
|
|
|
hosts: elasticClients
|
2019-04-22 15:01:56 -07:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: Install elastic repo
|
|
|
|
include: install-repo.yml
|
|
|
|
|
2019-04-23 12:21:00 -07:00
|
|
|
#- name: Install elastic heartbeat
|
|
|
|
#become: true
|
|
|
|
#apt:
|
|
|
|
#name: heartbeat-elastic
|
2019-04-22 15:01:56 -07:00
|
|
|
|
2019-04-23 12:21:00 -07:00
|
|
|
#- name: Configure elastic heartbeat
|
|
|
|
#include: config-heartbeat.yml
|
2019-04-22 15:01:56 -07:00
|
|
|
|
|
|
|
- name: Install elastic metricbeat
|
|
|
|
become: true
|
|
|
|
apt:
|
|
|
|
name: metricbeat
|
|
|
|
|
|
|
|
- name: Configure elastic metricbeat
|
|
|
|
include: config-metricbeat.yml
|