Open
Description
The built-in apm_user
already has read
access to the default apm indices (apm-*
) by default:
However, simply assigning the apm_user
role to a user will not grant them access to use APM in Kibana. They'll still need application privileges for APM.
Suggestion
To improve the getting started experience I'm proposing that apm_user
role should have read
privileges to the APM feature in Kibana.
I'm thinking something like this:
new RoleDescriptor.ApplicationResourcePrivileges[] {
RoleDescriptor.ApplicationResourcePrivileges.builder()
.application("kibana-*").resources("*").privileges("feature_apm.read").build()
},