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