I have the latest 7.10 elastic and Kibana on Kubernetes, I couldn't understand from docs if there's an option to connect multiple elastic clusters to one Kibana (as in Grafana)? If yes can you please share documentation? I only see cross cluster which replicate elastic clusters. I appreciate any help.
https://elasticsearch:443/elastic/_cluster/settings
{
"persistent": {
"cluster": {
"remote": {
"cluster_one": {
"seeds": [
"127.0.0.1:9200"
],
"transport.ping_schedule": "30s"
},
"cluster_two": {
"mode": "sniff",
"seeds": [
"192.88.88.88:443"
],
"transport.compress": true
}
}
}
}