In our lab environment, we are using two kibana instances with the Elasticsearch cluster. The problem is that kibana.index configuration option is deprecated now and it will be removed in kibana 8. In our lab environment, we are using two kibana instances with the Elasticsearch cluster and we keep the kibana indexes different for these two kibana instances by using the configuration options kibana.index and xpack.task_manager.index. For example, for 1st kibana instance we have the following configuration:
kibana.index: ".kibana"
xpack.task_manager.index: ".kibana_task_manager"
For the 2nd instance, we have the following configuration:
kibana.index: ".kibana-testing"
xpack.task_manager.index: ".kibana-testing_task_manager"
My question is that these options are no longer supported in kibana 8, so how I can make sure that different indexes are created for different kibana instances.Can anyone guide me in this regard?