
The beats were all enabled with the default settings to enable dashboards and templating when the specific beat starts. In a large scale environment this creates a DDOS against Kibana as all beats begin uploading templates and dashboards clobbering one another. This change moves the dashboard config into a common template and sets everything using sane defaults so that we're not inadvertently killing our clusters when rolling restarts happen, like in the event of an upgrade. Change-Id: Ib48ea34a350335b72c3e3df941853c405072446a Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
33 lines
1.4 KiB
Django/Jinja
33 lines
1.4 KiB
Django/Jinja
# These settings control loading the sample dashboards to the Kibana index. Loading
|
|
# the dashboards are disabled by default and can be enabled either by setting the
|
|
# options here, or by using the `-setup` CLI flag or the `setup` command.
|
|
setup.dashboards.enabled: false
|
|
|
|
# The directory from where to read the dashboards. The default is the `kibana`
|
|
# folder in the home path.
|
|
#setup.dashboards.directory: ${path.home}/kibana
|
|
|
|
# The URL from where to download the dashboards archive. It is used instead of
|
|
# the directory if it has a value.
|
|
#setup.dashboards.url:
|
|
|
|
# The file archive (zip file) from where to read the dashboards. It is used instead
|
|
# of the directory when it has a value.
|
|
#setup.dashboards.file:
|
|
|
|
# In case the archive contains the dashboards from multiple Beats, this lets you
|
|
# select which one to load. You can load all the dashboards in the archive by
|
|
# setting this to the empty string.
|
|
#setup.dashboards.beat: {{ beat_name }}
|
|
|
|
# The name of the Kibana index to use for setting the configuration. Default is ".kibana"
|
|
#setup.dashboards.kibana_index: .kibana
|
|
|
|
# The Elasticsearch index name. This overwrites the index name defined in the
|
|
# dashboards and index pattern. Example: testbeat-*
|
|
#setup.dashboards.index:
|
|
|
|
# Always use the Kibana API for loading the dashboards instead of autodetecting
|
|
# how to install the dashboards by first querying Elasticsearch.
|
|
#setup.dashboards.always_kibana: false
|