From aabf188aa66387188a0d57edbfc12f26729b7952 Mon Sep 17 00:00:00 2001 From: Elastic Jasper Date: Wed, 17 Aug 2016 12:23:50 -0400 Subject: [PATCH] Backport PR #7998 --------- MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Commit 1:** Don't use deprecated config key `elasticsearch_url` When following the description from the docs to set the elasticsearch url I got a warning that the key was deprecated. This updates the docs to use the non-deprecated key. I haven't checked if this needs to be updated in other parts of the documentation too. * Original sha: 3544b66dfa4f9d5523f29e0a69faee1a3a9d6c37 * Authored by Christoph Büscher on 2016-08-15T12:14:33Z * Committed by GitHub on 2016-08-15T12:14:33Z --- docs/production.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/production.asciidoc b/docs/production.asciidoc index 13eaffc29ec1b..a25e566266739 100644 --- a/docs/production.asciidoc +++ b/docs/production.asciidoc @@ -128,10 +128,10 @@ name of your cluster. -------- cluster.name: "my_cluster" -------- -. Make sure Kibana is configured to point to your local client node. In `kibana.yml`, the `elasticsearch_url` should be set to +. Make sure Kibana is configured to point to your local client node. In `kibana.yml`, the `elasticsearch.url` should be set to `localhost:9200`. + -------- # The Elasticsearch instance to use for all your queries. -elasticsearch_url: "http://localhost:9200" +elasticsearch.url: "http://localhost:9200" --------