Configure index lifecycle management
editConfigure index lifecycle management
editUse the index lifecycle management (ILM) feature in Elasticsearch to manage your Auditbeat their backing indices of your data streams as they age. Auditbeat loads the default policy automatically and applies it to any data streams created by Auditbeat.
You can view and edit the policy in the Index lifecycle policies UI in Kibana. For more information about working with the UI, see Index lifecyle policies.
Example configuration:
setup.ilm.enabled: true
If index lifecycle management is enabled (which is typically the default), setup.template.name
and setup.template.pattern
are ignored.
Configuration options
editYou can specify the following settings in the setup.ilm
section of the
auditbeat.yml
config file:
setup.ilm.enabled
editEnables or disables index lifecycle management on any new indices created by
Auditbeat. Valid values are true
and false
.
setup.ilm.policy_name
editThe name to use for the lifecycle policy. The default is
auditbeat
.
setup.ilm.policy_file
editThe path to a JSON file that contains a lifecycle policy configuration. Use this setting to load your own lifecycle policy.
For more information about lifecycle policies, see Set up index lifecycle management policy in the Elasticsearch Reference.
setup.ilm.check_exists
editWhen set to false
, disables the check for an existing lifecycle policy. The
default is true
. You need to disable this check if the Auditbeat
user connecting to a secured cluster doesn’t have the read_ilm
privilege.
If you set this option to false
, lifecycle policy will not be installed, even if
setup.ilm.overwrite
is set to true
.
setup.ilm.overwrite
editWhen set to true
, the lifecycle policy is overwritten at startup. The default
is false
.