48e2b8e998
This addition is an updated of the curent elk_metrics which will install Elasticsearc, Logstash and Kibana 6.x. It also include configuration guide for haproxy endpoints Change-Id: Iac4dec6d17bc75433e5fe672f3b9781536b8e619
47 lines
1.4 KiB
YAML
47 lines
1.4 KiB
YAML
---
|
|
- name: install ElK stack
|
|
hosts: elastic-logstash
|
|
become: true
|
|
vars_files:
|
|
- vars/variables.yml
|
|
tasks:
|
|
- name: add Elastic search public GPG key
|
|
apt_key:
|
|
url: "https://artifacts.elastic.co/GPG-KEY-elasticsearch"
|
|
state: "present"
|
|
- name: enable apt https transport
|
|
apt: name=apt-transport-https state=present update_cache=yes
|
|
- name: add Logstash to apt sources list
|
|
apt_repository: repo='deb https://artifacts.elastic.co/packages/6.x/apt stable main' state=present
|
|
- name: Ensure Logstash is installed.
|
|
apt: name=logstash state=present update_cache=yes
|
|
- name: Drop Logstash conf for beats input
|
|
template:
|
|
src: templates/02-beats-input.conf.j2
|
|
dest: /etc/logstash/conf.d/02-beats-input.conf
|
|
- name: Drop Logstash conf for beats input
|
|
template:
|
|
src: templates/10-syslog-filter.conf.j2
|
|
dest: /etc/logstash/conf.d/10-syslog-filter.conf
|
|
- name: Drop Logstash conf for beats output
|
|
template:
|
|
src: templates/30-elasticsearch-output.conf.j2
|
|
dest: /etc/logstash/conf.d/30-elasticsearch-output.conf
|
|
- shell: /usr/share/logstash/bin/logstash -t --path.settings /etc/logstash
|
|
register: conf_success
|
|
- debug: var=conf_success
|
|
- name: Enable and restart logstash
|
|
service:
|
|
name: "logstash"
|
|
enabled: true
|
|
state: restarted
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|