@@ -5,33 +5,40 @@ port: ::KIBANA_PORT::
5
5
host : " ::KIBANA_HOST::"
6
6
7
7
# The Elasticsearch instance to use for all your queries.
8
- elasticsearch : " ::ES_URL::"
8
+ elasticsearch_url : " ::ES_URL::"
9
+
10
+ # preserve_elasticsearch_host true will send the hostname specified in `elasticsearch`. If you set it to false,
11
+ # then the host you use to connect to *this* Kibana instance will be sent.
12
+ elasticsearch_preserve_host : true
9
13
10
14
# Kibana uses an index in Elasticsearch to store saved searches, visualizations
11
15
# and dashboards. It will create a new index if it doesn't already exist.
12
- kibanaIndex : " ::KIBANA_INDEX::"
16
+ kibana_index : " ::KIBANA_INDEX::"
13
17
14
18
# The default application to load.
15
- defaultAppId : " ::APP_ID::"
19
+ default_app_id : " ::APP_ID::"
16
20
17
- # Time in seconds to wait for responses from the back end or elasticsearch.
18
- # Note this should always be higher than "shard_timeout".
21
+ # Time in milliseconds to wait for responses from the back end or elasticsearch.
19
22
# This must be > 0
20
23
request_timeout : ::REQUEST_TIMEOUT::
21
24
25
+
22
26
# Time in milliseconds for Elasticsearch to wait for responses from shards.
23
- # Note this should always be lower than "request_timeout".
24
- # Set to 0 to disable (not recommended).
27
+ # Set to 0 to disable.
25
28
shard_timeout : ::SHARD_TIMEOUT::
26
29
27
30
# Set to false to have a complete disregard for the validity of the SSL
28
31
# certificate.
29
- verifySSL : ::VERIFY_SSL::
32
+ verify_ssl : ::VERIFY_SSL::
30
33
31
34
# Plugins that are included in the build, and no longer found in the plugins/ folder
32
- bundledPluginIds :
35
+ bundled_plugin_ids :
33
36
- plugins/dashboard/index
34
37
- plugins/discover/index
38
+ - plugins/doc/index
39
+ - plugins/kibana/index
40
+ - plugins/markdown_vis/index
41
+ - plugins/metric_vis/index
35
42
- plugins/settings/index
36
43
- plugins/table_vis/index
37
44
- plugins/vis_types/index
0 commit comments