Grant privileges and roles needed for publishing
editGrant privileges and roles needed for publishing
editUsers who publish events to Elasticsearch need to create and write to Winlogbeat indices. To minimize the privileges required by the writer role, use the setup role to pre-load dependencies. This section assumes that you’ve run the setup.
When using ILM, turn off the ILM setup check in the Winlogbeat config file before running Winlogbeat to publish events:
setup.ilm.check_exists: false
To grant the required privileges:
-
Create a writer role, called something like
winlogbeat_writer, that has the following privileges:The
monitorcluster privilege and thecreate_docandauto_configureprivileges onwinlogbeat-*indices are required in every configuration.Type Privilege Purpose Cluster
monitorRetrieve cluster details (e.g. version)
Cluster
read_ilmRead the ILM policy when connecting to clusters that support ILM. Not needed when
setup.ilm.check_existsisfalse.Cluster
read_pipelineCheck for ingest pipelines used by Winlogbeat.
Index
create_doconwinlogbeat-*indicesWrite events into Elasticsearch
Index
auto_configureonwinlogbeat-*indicesUpdate the datastream mapping. Consider either disabling entirely or adding the rule
winlogbeat-*to the cluster settings action.auto_create_index to prevent unwanted indices creations from the agents.Omit any privileges that aren’t relevant in your environment.
- Assign the writer role to users who will index events into Elasticsearch.