Giter VIP home page Giter VIP logo

pupmod-simp-simp_logstash's Introduction

License CII Best Practices Puppet Forge Puppet Forge Downloads Build Status

SIMP Logstash Puppet Component Module

Table of Contents

  1. Overview
  2. Setup - The basics of getting started with simp_logstash
  3. Limitations
  4. Development - Guide for contributing to the module

Overview

A module to integrate the upstream logstash module into the SIMP ecosystem.

This is a SIMP component module

This module is a component of the System Integrity Management Platform, a a compliance-management framework built on Puppet.

If you find any issues, they can be submitted to our JIRA.

Please read our Contribution Guide.

As a component module, this module is not recommended for use outside of a SIMP environment but may work with some minor modification.

Setup

What simp_logstash affects

This module will install Java on your system and will configure a Logstash server to collect logs from syslog and TLS protected syslog as well as pushing the output to either a local file or to an Elasticsearch cluster.

Any logstash input or output is supported, but only plain file and Elasticsearch outputs are built in at this point.

The module has been tested against a remote Rsyslog client using both TLS and non-TLS connections. Since Stunnel is used to encrypt remote connections, if the backing Logstash server dies, Rsyslog will not failover between Logstash connections unless Stunnel dies as well. This is something that we will look toward remediating in the future.

Setup Requirements

The only thing necessary to begin using simp_logstash is to install it into your module path.

Beginning with simp_logstash

The remaining documentation assumes that you wish to feed your data directly into Elasticsearch.

Configuring a Combined Logstash and Elasticsearch System

In general, you're going to want to have a local Elasticsearch ingest node on each Logstash server. While not required, this is preferred so that network connectivity issues do not cause Logstash to hang on output delivery and input processing.

To set this up, you would simply include '::simp_elasticsearch' and include '::simp_logstash' and apply the following Hiera code.

Please note that communications between Elasticsearch nodes will not be encrypted by default. To gain ES communication protection, you can look at commercial solutions from Elastic, or you can apply the SIMP IPSec Module.

---
# The networks that you want to allow to connect to your systems

simp_options::trusted_nets:
 - '1.2.3.4/16'

# For the IPTables redirects to the unprivileged Logstash process

simp_options::firewall : true

# Elasticsearch Settings
#
# Internal Node setup
#
# Ideally, this would be randomized

simp_elasticsearch::cluster_name : 'logstash'
simp_elasticsearch::bind_host : "%{::ipaddress}"

# This needs to be a list of *all* of your ES cluster hosts so that the
# cluster works in a safe, sane manner.
#
# The first entry should be your local Logstash hosts. All Logstash hosts can
# be entered if you wish to make them part of the data cluster.

simp_elasticsearch::unicast_hosts :
  - "logstash1.%{::domain}:9300"
  - "es1.%{::domain}:9300"
  - "es2.%{::domain}:9300"

# Logstash Settings

# If you want Unencrypted UDP and TCP logs (requires SIMP IPTables)

simp_logstash::input::syslog::listen_plain_tcp : true
simp_logstash::input::syslog::listen_plain_udp : true

# Send all output to the local ES instance

simp_logstash::outputs :
  - 'elasticsearch'

In addition, for EL6 systems, ensure the correct version of JAVA is installed as follows:

java::package : 'java-1.8.0-openjdk-devel'

Directing Logstash to an External Elasticsearch System

Setting up the Logstash System

Being aware of the potential issues as mentioned above if the remote Elasticsearch system goes down, should you wish to set up your Logstash system to point to an external Elasticsearch Cluster, you should configure it as follows.

---
# The networks that you want to allow to connect to your systems

simp_options::trusted_nets:
 - '1.2.3.4/16'

# For the IPTables redirects to the unprivileged Logstash process

simp_options::firewall : true

# Logstash Settings

# This is currently required due to a bug in the Elastic provided 'logstash'
# module

logstash::logstash_user : 'logstash'
logstash::logstash_group : 'logstash'

# If you want Unencrypted UDP and TCP logs (requires SIMP IPTables)

simp_logstash::input::syslog::listen_plain_tcp : true
simp_logstash::input::syslog::listen_plain_udp : true

# This uses TLS to provide an encrypted connection so you
# can only point at one node at a time. You could place this behind a load
# balancer if you want a redundant solution.

simp_logstash::output::elasticsearch::host : "es1.%{::domain}"

# Send all output to the remote ES instance

simp_logstash::outputs :
  - 'elasticsearch'

Be sure to specify the correct version of JAVA for EL6 systems as follows:

java::package : 'java-1.8.0-openjdk-devel'
Setting up the Elasticsearch System

The Elasticsearch system must be configured to properly accept input from the Logstash system.

The following is the preferred configuration for a SIMP Elasticsearch configuration.

# Elasticsearch Settings
#
# Internal Node setup
#
# Ideally, this would be randomized

simp_elasticsearch::cluster_name : 'logstash'
simp_elasticsearch::bind_host : "%{::ipaddress}"

# Set the Apache ACL such that your Logstash client(s) can connect
simp_elasticsearch::http_method_acl :
  'limits' :
    'hosts' :
      "ls1.%{::domain}" : 'defaults'
      "ls2.%{::domain}" : 'defaults'

# This needs to be a list of *all* of your ES cluster hosts so that the
# cluster works in a safe, sane manner.

simp_elasticsearch::unicast_hosts :
  - "es1.%{::domain}:9300"
  - "es2.%{::domain}:9300"

Limitations

This module has only been tested on Red Hat Enterprise Linux 6 and 7 and CentOS 6 and 7.

Development

Please read our Contribution Guide.

Acceptance tests

To run the system tests, you need Vagrant installed. Then, run:

bundle exec rake beaker:suites

Some environment variables may be useful:

BEAKER_debug=true
BEAKER_provision=no
BEAKER_destroy=no
BEAKER_use_fixtures_dir_for_modules=yes
  • BEAKER_debug: show the commands being run on the STU and their output.
  • BEAKER_destroy=no: prevent the machine destruction after the tests finish so you can inspect the state.
  • BEAKER_provision=no: prevent the machine from being recreated. This can save a lot of time while you're writing the tests.
  • BEAKER_use_fixtures_dir_for_modules=yes: cause all module dependencies to be loaded from the spec/fixtures/modules directory, based on the contents of .fixtures.yml. The contents of this directory are usually populated by bundle exec rake spec_prep. This can be used to run acceptance tests to run on isolated networks.

pupmod-simp-simp_logstash's People

Contributors

lnemsick-simp avatar op-ct avatar trevor-vaughan avatar jeannegreulich avatar ralph-wright avatar nick-markowski avatar brandonrdn avatar

Watchers

Steven Pritchard avatar Steven Ford avatar James Cloos avatar judy johnson avatar Dylan Cochran avatar  avatar Adam Yohrling avatar CyrodiilSavior avatar Rick Gardner avatar Kendall Moore avatar  avatar  avatar  avatar Mike Riddle avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.