From 5e66f83fd05a2dee38a4c5d0339a94a4bfef2d94 Mon Sep 17 00:00:00 2001 From: Michael Tarleton Date: Mon, 13 Jun 2016 20:50:19 -0500 Subject: [PATCH] Removed the json plugin and updated the README. --- README.md | 2 +- logstash/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 07a7d81..6dc5dda 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ logstash: To add plugins to logstash you have to: 1. Add a RUN statement to the `logstash/Dockerfile` (ex. `RUN logstash-plugin install logstash-filter-json`) -2. Add the associated plugin code to the `logstash/config/logstash.conf` file +2. Add the associated plugin code configuration to the `logstash/config/logstash.conf` file ## How can I enable a remote JMX connection to Logstash? diff --git a/logstash/Dockerfile b/logstash/Dockerfile index 920e1ae..10d3bdb 100644 --- a/logstash/Dockerfile +++ b/logstash/Dockerfile @@ -1,4 +1,4 @@ FROM logstash:latest -# Install plugins -RUN logstash-plugin install logstash-filter-json \ No newline at end of file +# Add your logstash plugins setup here +# Example: RUN logstash-plugin install logstash-filter-json \ No newline at end of file