Ansible/playbook/linux/elastic/install-metricbeat.yml
James Tombleson 8f63118ca2 updates
Comments added to elasticsearch
Config for kibana is now done with ansible
removed the stored config file
metricbeat was added
2019-04-19 12:52:07 -07:00

20 lines
466 B
YAML

- name: Install Metricbeat
hosts: elastic
tasks:
- name: Download metricbeat deb
get_url:
url: 'https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-7.0.0-amd64.deb'
dest: /tmp/metricbeat.deb
- name: Install metricbeat
become: true
apt:
deb: /tmp/metricbeat.deb
- name: enable modules
- name: config where to send information