-
Notifications
You must be signed in to change notification settings - Fork 25.3k
[Fleet] add index privileges to support reroute processor #129692
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
Conversation
Pinging @elastic/es-core-infra (Team:Core/Infra) |
@@ -118,6 +118,8 @@ public class ServiceAccountIT extends ESRestTestCase { | |||
"indices": [ | |||
{ | |||
"names": [ | |||
"logs", | |||
"logs.*", |
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.
Seeing that we also have metrics-*
and traces-*
here, should we also add metrics
, metrics.*
, traces
and traces.*
?
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.
It seems we only need for logs for now: elastic/kibana#224200 (comment)
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.
If we keep using the reroute processor I guess it is a matter of time to use it with metrics too. But ok, we can add it when this happens.
Closes elastic/kibana#224200
Add additional index privileges to
fleet-server
service account to enable reroute processor to work on these index patterns (logs, logs.*
)gradle check
? yes