Update to 6.4.2

closes #332
This commit is contained in:
Antoine Cotten 2018-10-23 18:07:20 +02:00
parent decde0ba0d
commit 7398d67a86
No known key found for this signature in database
GPG Key ID: 94637E68D4A79DD0
2 changed files with 3 additions and 3 deletions

2
.env
View File

@ -1 +1 @@
ELK_VERSION=6.4.0 ELK_VERSION=6.4.2

View File

@ -1,7 +1,7 @@
# Elastic stack (ELK) on Docker # Elastic stack (ELK) on Docker
[![Join the chat at https://gitter.im/deviantony/docker-elk](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Join the chat at https://gitter.im/deviantony/docker-elk](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/deviantony/docker-elk?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Elastic Stack version](https://img.shields.io/badge/ELK-6.4.0-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/312) [![Elastic Stack version](https://img.shields.io/badge/ELK-6.4.2-blue.svg?style=flat)](https://github.com/deviantony/docker-elk/issues/332)
[![Build Status](https://api.travis-ci.org/deviantony/docker-elk.svg?branch=master)](https://travis-ci.org/deviantony/docker-elk) [![Build Status](https://api.travis-ci.org/deviantony/docker-elk.svg?branch=master)](https://travis-ci.org/deviantony/docker-elk)
Run the latest version of the [Elastic stack](https://www.elastic.co/elk-stack) with Docker and Docker Compose. Run the latest version of the [Elastic stack](https://www.elastic.co/elk-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.4.0' \ -H 'kbn-version: 6.4.2' \
-d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}' -d '{"attributes":{"title":"logstash-*","timeFieldName":"@timestamp"}}'
``` ```