Ansible/playbook/linux/elastic/config-metricbeat.yml
James Tombleson 3f49a5fe88 -sigh-
After trying to go down the path of editing the configs with inline I am going to change over to a template file and see if I can get that to work better for me.  At least Elastic will now let me hit the REST.
2019-04-23 12:21:00 -07:00

52 lines
1.1 KiB
YAML

# - name: enable modules
- name: define kibana host
become: true
lineinfile:
path: /etc/metricbeat/metricbeat.yml
regexp: 'host: "localhost:5601"'
#insertafter: '#host: "localhost:5601"'
line: ' host: "192.168.0.173:5601"'
state: present
backrefs: yes
- name: define elasticsearch host
become: true
lineinfile:
path: /etc/metricbeat/metricbeat.yml
regexp: 'hosts: \["localhost:9200"\]'
#insertafter: '#hosts: ["localhost:9200"]'
line: ' hosts: ["192.168.0.173:9200"]'
state: present
backrefs: yes
- name: enable system module
become: true
shell: metricbeat modules enable system
- name: run metricbeat setup
become: true
shell: metricbeat setup
- name: start metricbeat service
become: true
shell: metricbeat service metricbeat start
- name: systemd - daemon reload
become: true
systemd:
daemon_reload: yes
- name: Enable service on system startup
become: true
systemd:
name: metricbeat
enabled: yes
- name: systemd - restart Metricbeat
become: true
systemd:
name: metricbeat
state: restarted