Tenant saved objects .kibana index

Is there any way to get the tenants .kibana index pattern (the index where Kibana saved objects are stored) upon tenant creation or any other method?
It seems to be constructed like this .kibana_-{unknow_id}_{user_name} but the documentation doesn’t mention it?

Try calling the _searchguard/tenantinfo api (you need to call this as an admin user with the admin tls certificat or as the kibanaserver user)

The tenants .kibana index pattern is internal and may change. It is composed of originalKibanaIndex + "_" + tenant.hashCode() + "_" + tenant.toLowerCase().replaceAll("[^a-z0-9]+", EMPTY_STRING);

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.