Skip to content

Zhomart/elk-ansible

Folders and files

NameName
Last commit message
Last commit date

Latest commit

69fa54f · May 24, 2018

History

11 Commits
Jun 8, 2017
Nov 10, 2016
Nov 11, 2016
May 24, 2018
Jun 8, 2017
Jun 8, 2017
Nov 11, 2016

Repository files navigation

Ansible Role: elk

An Ansible Role that installs Elasticsearch, Logstash and Kibana 5.0 on Debian/Ubuntu.

Tested on Ubuntu 16.04

Getting started

Make sure that python:2.7 is installed on the host.

Look at defaults/main.yml for variables.

This playbook is expected to run under root.

Example of using in playbook

$ ls -l .
hosts
roles/
site.yml
$ ls -l roles
Zhomart.elk/

hosts

[elk]
138.68.5.100

site.yml

---
- hosts: all
  remote_user: root

  vars:
    elk_vm_max_map_count:       "262144"

  roles:
    - role: 'Zhomart.elk'

And then run ansible playbook

$ ansible-playbook site.yml -i hosts

Don't forget to allow needed ports on hosts.

root@host # ufw allow 5601

Logstash

https://discuss.elastic.co/t/running-multiple-independent-logstash-config-files-with-input-filter-and-output/29757

Logstash currently has a single event pipeline. All configuration files are just concatenated (in order) as if you had written a single flat file. If you don't want all filters to apply to all events you need to have conditionals to select which filters (and outputs) to apply where. For example, you'd typically assign different types to different kinds of messages so you'd wrap your filters like this:

if [type] == "sometype" {
  ...
}

TODO

  • Elasticsearch 5.0
  • Logstash 5.0
  • Kibana 5.0
  • X-Pack

About

ELK 5 (Elastic, Logstash, Kibana) ansible role

Resources

Stars

Watchers

Forks

Packages

No packages published