Alternatives to old .kibana indices to retrieve dashboards title

Hello all !

My client just migrated from ELK7 -> ELK8.

We have a logstash pipeline indexing some kibana audit logs to make statistics over defined spaces/dashboard on our Kibana, which was using .kibana indexes to retrieve dashboards title from dashboards id present in audit logs, to enrich processed documents

Since ELK8, its seems that dashboards are not anymore indexed as document in .kibana indices (using the old id syntax : "%{space_id}:%{object_type}:%{object_id})

Is it still one index containing an equivalence between dashboards id and dashboards title in ELK8?
Or are we forced, now, to use Kibana API to get data about currently defined saved objects?

Thank you in advance

PLC

Hey @plcharl ,

You can read more about the change in elastic/kibana#154888

Using Kibana API is the most reliable way to retrieve saved objects.

Best regards, Dima

1 Like

Hey @Dzmitry,

Thank you for your quick reply !
This is exactly the response that I was looking for.
I know that the best practice is to use the Kibana API but I wanted to understand the nature of that change, and have a 2nd option if needed ! So thank you for the link to the relevant PR. It always better when you can understand the internals !

Regards, PLC

1 Like

Also additional help for others wanting to do the same:

izmaxxsun/kibana-access (github.com)