36 lines
1.1 KiB
Django/Jinja
36 lines
1.1 KiB
Django/Jinja
# For more configuration options see the configuration guide for Kibana in
|
|
# https://www.elastic.co/guide/index.html
|
|
|
|
# =================== System: Kibana Server ===================
|
|
server: {{ kibana_config_server | to_yaml }}
|
|
|
|
# =================== System: Elasticsearch ===================
|
|
elasticsearch: {{ kibana_config_elasticsearch | to_yaml }}
|
|
|
|
# =================== System: Logging ===================
|
|
# Set the value of this setting to off to suppress all logging output, or to debug to log everything. Defaults to 'info'
|
|
logging: {{ kibana_config_logging | to_yaml }}
|
|
|
|
|
|
# =================== System: Other ===================
|
|
path:
|
|
data: {{ kibana_data_location }}
|
|
pid:
|
|
file: {{ kibana_home }}/kibana.pid
|
|
ops:
|
|
interval: 5000
|
|
i18n:
|
|
local: "en"
|
|
|
|
# =================== Saved Objects: Migrations ===================
|
|
migrations:
|
|
batchSize: 1000
|
|
maxBatchSizeBytes: 100mb
|
|
retryAttempts: 15
|
|
|
|
# =================== Search Autocomplete ===================
|
|
unifiedSearch:
|
|
autocomplete:
|
|
valueSuggestions:
|
|
timeout: 1000
|
|
terminateAfter: 100000 |