[DOCS] Deprecate elasticsearch.url (#29982)

This commit is contained in:
Lisa Cawley 2019-02-04 12:59:46 -08:00 committed by lcawl
parent a0b806cd6d
commit a7aa8dc50e

View file

@ -11,7 +11,7 @@ The default settings configure Kibana to run
on `localhost:5601`. To change the host or port number, or connect to Elasticsearch running on a different machine,
you'll need to update your `kibana.yml` file. You can also enable SSL and set a variety of other options. Finally, environment variables can be injected into configuration using `${MY_ENV_VAR}` syntax.
.Kibana Configuration Settings
.Kibana configuration settings
`console.enabled:`:: *Default: true* Set to false to disable Console. Toggling this will cause the server to regenerate assets on the next startup, which may cause a delay before pages start being served.
@ -65,6 +65,10 @@ requests for end-users being executed as the identity tied to the configured cer
`elasticsearch.startupTimeout:`:: *Default: 5000* Time in milliseconds to wait for Elasticsearch at Kibana startup before
retrying.
`elasticsearch.url:`:: *Default: "http://localhost:9200"* The URL of the
Elasticsearch instance to use for all your queries.
deprecated[6.6.0,Replaced by `elasticsearch.hosts`]
`elasticsearch.hosts:`:: *Default: "http://localhost:9200"* The URLs of the Elasticsearch instances to use for all your
queries. All nodes listed here must be on the same cluster.