Skip to content

Commit

Permalink
fix(logstash): Adjust role for ECS compatibility
Browse files Browse the repository at this point in the history
'ecs_compatibility' is now on by default, therefore Logstash indices are
created with the naming pattern "ecs-logstash-*" when data streams are
disabled ('data_stream => false').
  • Loading branch information
antoineco committed Mar 2, 2022
1 parent 02dabf6 commit 82b1e65
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup/roles/logstash_writer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
{
"names": [
"logs-generic-default",
"logstash-*"
"logstash-*",
"ecs-logstash-*"
],
"privileges": [
"write",
Expand All @@ -20,7 +21,8 @@
},
{
"names": [
"logstash"
"logstash",
"ecs-logstash"
],
"privileges": [
"write",
Expand Down

0 comments on commit 82b1e65

Please sign in to comment.