Skip to content

Commit fc08c74

Browse files
committed
upgraded Elasticsearch to 2.3.3 and Kibana to 4.5.1
1 parent e150a53 commit fc08c74

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile for ELK stack
2-
# Elasticsearch 2.3.2, Logstash 2.3.2, Kibana 4.5.0
2+
# Elasticsearch 2.3.3, Logstash 2.3.2, Kibana 4.5.1
33

44
# Build with:
55
# docker build -t <repo-user>/elk .
@@ -37,7 +37,7 @@ RUN set -x \
3737

3838
### install Elasticsearch
3939

40-
ENV ES_VERSION 2.3.2
40+
ENV ES_VERSION 2.3.3
4141

4242
RUN curl http://packages.elasticsearch.org/GPG-KEY-elasticsearch | apt-key add -
4343
RUN echo deb http://packages.elasticsearch.org/elasticsearch/2.x/debian stable main > /etc/apt/sources.list.d/elasticsearch-2.x.list
@@ -71,7 +71,7 @@ RUN sed -i -e 's#^LS_HOME=$#LS_HOME='$LOGSTASH_HOME'#' /etc/init.d/logstash \
7171

7272
### install Kibana
7373

74-
ENV KIBANA_VERSION 4.5.0
74+
ENV KIBANA_VERSION 4.5.1
7575
ENV KIBANA_HOME /opt/kibana
7676
ENV KIBANA_PACKAGE kibana-${KIBANA_VERSION}-linux-x64.tar.gz
7777

README-short.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Collect, search and visualise log data with ELK (Elasticsearch 2.3.2, Logstash 2.3.2, Kibana 4.5.0).
1+
Collect, search and visualise log data with ELK (Elasticsearch 2.3.3, Logstash 2.3.2, Kibana 4.5.1).

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ This Docker image provides a convenient centralised log server and log managemen
66

77
The following tags are available:
88

9-
- `es232_l232_k450`, `latest`: Elasticsearch 2.3.2, Logstash 2.3.2, and Kibana 4.5.0.
9+
- `es233_l232_k451`, `latest`: Elasticsearch 2.3.3, Logstash 2.3.2, and Kibana 4.5.1.
10+
11+
- `es232_l232_k450`: Elasticsearch 2.3.2, Logstash 2.3.2, and Kibana 4.5.0.
1012

1113
- `es231_l231_k450`: Elasticsearch 2.3.1, Logstash 2.3.1, and Kibana 4.5.0.
1214

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ The following environment variables can be used to override the defaults used to
204204

205205
- `LS_OPTS`: Logstash options (default: `"--auto-reload"` in images with tags `es231_l231_k450` and `es232_l232_k450`, `""` in `latest`)
206206

207-
**Warning** – As Logstash's auto-reload feature appears to create a resource leak (see [https://github.com/elastic/logstash/issues/5235](https://github.com/elastic/logstash/issues/5235)), the default `--auto-reload` option has been removed in the `latest` image at the time of writing (see [https://github.com/spujadas/elk-docker/issues/41](https://github.com/spujadas/elk-docker/issues/41)). For users of images with tags `es231_l231_k450` and `es232_l232_k450`, it is strongly recommended to override Logstash's options to disable the auto-reload feature by setting the `LS_OPTS` environment to `--no-auto-reload`. Future versions of the image may re-enable the auto-reload feature once the memory leak issue is fixed.
207+
**Warning** – As Logstash's auto-reload feature (introduced in version 2.3) creates a resource leak in early 2.3.x versions (see [https://github.com/elastic/logstash/issues/5235](https://github.com/elastic/logstash/issues/5235)), the default `--auto-reload` option has been removed in the `es233_l232_k451` image at the time (see [https://github.com/spujadas/elk-docker/issues/41](https://github.com/spujadas/elk-docker/issues/41)). For users of images with tags `es231_l231_k450` and `es232_l232_k450`, it is strongly recommended to override Logstash's options to disable the auto-reload feature by setting the `LS_OPTS` environment to `--no-auto-reload`. Future versions of the image may re-enable the auto-reload feature once a stable version of Logstash is released with the memory leak issue fixed (should be version 2.3.3).
208208

209209
As an illustration, the following command starts the stack, running Elasticsarch with a 2GB heap size, Logstash with a 1GB heap size and Logstash's configuration auto-reload disabled:
210210

0 commit comments

Comments
 (0)