Update to v6.2.4 (#278)
This commit is contained in:
parent
c315453178
commit
7e279b47b2
|
@ -1,7 +1,7 @@
|
||||||
# Docker ELK stack
|
# Docker ELK stack
|
||||||
|
|
||||||
[](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
[](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||
[](https://github.com/deviantony/docker-elk/issues/266)
|
[](https://github.com/deviantony/docker-elk/issues/266)
|
||||||
[](https://travis-ci.org/deviantony/docker-elk)
|
[](https://travis-ci.org/deviantony/docker-elk)
|
||||||
|
|
||||||
Run the latest version of the ELK (Elasticsearch, Logstash, Kibana) stack with Docker and Docker Compose.
|
Run the latest version of the ELK (Elasticsearch, Logstash, Kibana) stack with Docker and Docker Compose.
|
||||||
|
@ -127,7 +127,7 @@ Create an index pattern via the Kibana API:
|
||||||
```console
|
```console
|
||||||
$ curl -XPOST -D- 'http://localhost:5601/api/saved_objects/index-pattern' \
|
$ curl -XPOST -D- 'http://localhost:5601/api/saved_objects/index-pattern' \
|
||||||
-H 'Content-Type: application/json' \
|
-H 'Content-Type: application/json' \
|
||||||
-H 'kbn-version: 6.2.3' \
|
-H 'kbn-version: 6.2.4' \
|
||||||
-d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}'
|
-d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# https://github.com/elastic/elasticsearch-docker
|
# https://github.com/elastic/elasticsearch-docker
|
||||||
FROM docker.elastic.co/elasticsearch/elasticsearch-oss:6.2.3
|
FROM docker.elastic.co/elasticsearch/elasticsearch-oss:6.2.4
|
||||||
|
|
||||||
# Add your elasticsearch plugins setup here
|
# Add your elasticsearch plugins setup here
|
||||||
# Example: RUN elasticsearch-plugin install analysis-icu
|
# Example: RUN elasticsearch-plugin install analysis-icu
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# https://github.com/elastic/kibana-docker
|
# https://github.com/elastic/kibana-docker
|
||||||
FROM docker.elastic.co/kibana/kibana-oss:6.2.3
|
FROM docker.elastic.co/kibana/kibana-oss:6.2.4
|
||||||
|
|
||||||
# Add your kibana plugins setup here
|
# Add your kibana plugins setup here
|
||||||
# Example: RUN kibana-plugin install <name|url>
|
# Example: RUN kibana-plugin install <name|url>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# https://github.com/elastic/logstash-docker
|
# https://github.com/elastic/logstash-docker
|
||||||
FROM docker.elastic.co/logstash/logstash-oss:6.2.3
|
FROM docker.elastic.co/logstash/logstash-oss:6.2.4
|
||||||
|
|
||||||
# Add your logstash plugins setup here
|
# Add your logstash plugins setup here
|
||||||
# Example: RUN logstash-plugin install logstash-filter-json
|
# Example: RUN logstash-plugin install logstash-filter-json
|
||||||
|
|
Loading…
Reference in New Issue