Skip to content
This repository has been archived by the owner on Mar 31, 2020. It is now read-only.

moexmen/logging-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Centralised Logging - Graylog & Logstash

A quick centralised logging setup for Graylog (Version 1.2.1) and Logstash (Version 1.5.4). In this setup, Logstash will centralise and parse logs, and forward them to Graylog for analysis, visualisation and monitoring. The setup is created on docker for easy deployment and administration.

In this repoistory, a sample config file for is provided to parse live tweets. Please follow the instructions for the setup.

Note that this is still a work in progress.

Getting Started

Installation and Setup

  1. Ensure docker is installed
  2. Clone this repository
  3. Run the following commands:
cp logstash/sample-Dockerfile logstash/Dockerfile
cp logstash/sample-docker-compose.yml logstash/docker-compose.yml
cp graylog/sample-Dockerfile graylog/Dockerfile
cp graylog/sample-docker-compose.yml graylog/docker-compose.yml

Basic Configuration

Graylog
  • Navigate to the graylog folder, uncomment and edit the environment variables in docker-compose.yml.
Logstash
  • Navigate to logstash/ folder, and make the necessary changes sample-twitter-demo.conf. You will require app keys with Twitter.

Starting the Containers to Check Live Tweets

The docker-compose files are deliberately kept separate for Graylog and Logstash. You may choose to create a single docker-compose file at the root.

  1. In the graylog/ folder, run the following commands:
docker-compose build
docker-compose up
  1. Find the ip using docker inpect gl, and login to Graylog (http:https://x.x.x.x:9000) and add a GELF UDP input (System -> Inputs, Default Port: 12201)
  2. In the graylog/ folder, run the following commands:
docker-compose build
docker-compose up
  1. Navigate back to Graylog to see live updates!

Manual Test for the Docker Setup

  1. Start both containers.
  2. Enter the logstash container: docker exec -it ls bash
  3. Start another logstash instance to forward logs to Graylog : /opt/logstash/bin/logstash -e 'input{stdin{}}output{gelf{host =>'gl'}}'
  4. Type something and verify whether the messages appear on Graylog.

Extending the Logging System

First Steps
  • For additional patterns for log forwarding, modify the provided config files and logstash dockerfile.
  • Remember to make the necessary changes in Dockerfile and docker-compose.yml (exposing of ports, adding of configuration files / patterns).
  • Note: The start script in the logstash container will run all config files that are added to /etc/logstash/conf.d.
Future
  • Please read the docs for scaling up Graylog in the future.
  • You can experiment with more complex/advanced configurations of logstash when required.

About

The Logstash Dockerfile was adapted from Sébastien Pujadas, released under the Apache 2 license.

To Do - Get Badge

Sample

About

Docker setup for centralised logging system

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages