Hi, I would like to ask if there is a way to config Kibana's APM UI to restrict users to only see some environment in ELK 6.8?
for example I have 3 APM indexes which are
*-apm-*
foo-bar-apm-*
jane-doe-apm-*
these indexes getting data from 2 Java Apm-Agent's environment configuration which are sending to the same APM server as below
- service.environment :
foo-bar
- service.environment:
jane-doe
I configured Kibana config as below for APM UI
apm_oss:
indexPattern: "*-apm-*"
errorIndices: "*-apm-*"
onboardingIndices: "*-apm-*"
spanIndices: "*-apm-*"
transactionIndices: "*-apm-*"
now if I want user-A to only see data from foo-bar
and user-B to only see data from jane-doe
environment in APM UI is this possible