-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update default kibana.yml #117597
Update default kibana.yml #117597
Conversation
Pinging @elastic/kibana-core (Team:Core) |
💚 Build Succeeded
Metrics [docs]
To update your PR or re-run it, just comment with: |
|
||
# Set the value of this setting to off to suppress all logging output, or to debug to log everything. | ||
# =================== System: Logging =================== | ||
# Set the value of this setting to off to suppress all logging output, or to debug to log everything. Defaults to 'error' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Set the value of this setting to off to suppress all logging output, or to debug to log everything. Defaults to 'error' | |
# Set the value of this setting to off to suppress all logging output, or to debug to log everything. Defaults to 'info' |
# The number of documents migrated at a time. | ||
# If Kibana can't start up or upgrade due to an Elasticsearch `circuit_breaking_exception`, | ||
# use a smaller batchSize value to reduce the memory pressure. Defaults to 1000 | ||
# migrations.batchSize: 1000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# migrations.batchSize: 1000 | |
#migrations.batchSize: 1000 |
# To avoid migrations failing due to a 413 Request Entity Too Large response from Elasticsearch. | ||
# This value should be lower than or equal to your Elasticsearch cluster’s `http.max_content_length` | ||
# configuration option. Default: 100mb | ||
# migrations.maxBatchSizeBytes: 100mb |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# migrations.maxBatchSizeBytes: 100mb | |
#migrations.maxBatchSizeBytes: 100mb |
# The number of times to retry temporary migration failures. Increase the setting | ||
# if migrations fail frequently with a message such as `Unable to complete the [...] step after | ||
# 15 attempts, terminating`. Defaults to 15 | ||
# migrations.retryAttempts: 15 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# migrations.retryAttempts: 15 | |
#migrations.retryAttempts: 15 |
# =================== Search Autocomplete =================== | ||
# Time in milliseconds to wait for autocomplete suggestions from Elasticsearch. | ||
# This value must be a whole number greater than zero. Defaults to 1000 | ||
# data.autocomplete.valueSuggestions.timeout: 1000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# data.autocomplete.valueSuggestions.timeout: 1000 | |
#data.autocomplete.valueSuggestions.timeout: 1000 |
|
||
# Maximum number of documents loaded by each shard to generate autocomplete suggestions. | ||
# This value must be a whole number greater than zero. Defaults to 100000 | ||
# data.autocomplete.valueSuggestions.terminateAfter: 100000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# data.autocomplete.valueSuggestions.terminateAfter: 100000 | |
#data.autocomplete.valueSuggestions.terminateAfter: 100000 |
|
||
# Specifies the path where Kibana creates the process ID file. | ||
#pid.file: /run/kibana/kibana.pid | ||
|
||
# Set the interval in milliseconds to sample system and process performance | ||
# metrics. Minimum is 100ms. Defaults to 5000. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# metrics. Minimum is 100ms. Defaults to 5000. | |
# metrics. Minimum is 100ms. Defaults to 5000ms. |
|
||
# The number of documents migrated at a time. | ||
# If Kibana can't start up or upgrade due to an Elasticsearch `circuit_breaking_exception`, | ||
# use a smaller batchSize value to reduce the memory pressure. Defaults to 1000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# use a smaller batchSize value to reduce the memory pressure. Defaults to 1000 | |
# use a smaller batchSize value to reduce the memory pressure. Defaults to 1000 objects per batch. |
|
||
# =================== Search Autocomplete =================== | ||
# Time in milliseconds to wait for autocomplete suggestions from Elasticsearch. | ||
# This value must be a whole number greater than zero. Defaults to 1000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# This value must be a whole number greater than zero. Defaults to 1000 | |
# This value must be a whole number greater than zero. Defaults to 1000ms |
# data.autocomplete.valueSuggestions.timeout: 1000 | ||
|
||
# Maximum number of documents loaded by each shard to generate autocomplete suggestions. | ||
# This value must be a whole number greater than zero. Defaults to 100000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# This value must be a whole number greater than zero. Defaults to 100000 | |
# This value must be a whole number greater than zero. Defaults to 100_000 |
This reverts commit ff7e77a.
Friendly reminder: Looks like this PR hasn’t been backported yet. |
4 similar comments
Friendly reminder: Looks like this PR hasn’t been backported yet. |
Friendly reminder: Looks like this PR hasn’t been backported yet. |
Friendly reminder: Looks like this PR hasn’t been backported yet. |
Friendly reminder: Looks like this PR hasn’t been backported yet. |
💚 Backport successful
This backport PR will be merged automatically after passing CI. |
Summary
Resolves #116296
With a new major release, we needed to audit the default
kibana.yml
template to ensure any deprecated settings have been updated and/or removed. Fortunately, the configurations already provided are all still valid and up to date but could be rearranged into logical groupings to make it easier to read.This PR enhances the config template: