Hello,
We are trying to register remote clusters from within another cluster in the same ECE instance. In elastic engineer 2, this is how we are told to register remote clusters:
PUT _cluster/settings
{
"persistent": {
"search.remote" : {
"germany_cluster" : {
"seeds" : ["my_server:9300","64.33.90.170:9300"]
}
}
}
}
The path to our elasticsearch in ECE looks more like:
https://(big long uuid).10.255.255.255.ip.es.io:9243 (this is not our IP)
So, for registering this, i have tried doing the above syntax we learned in engineer 2 with these as the seeds:
https://(big long uuid).10.255.255.255.ip.es.io:9243
(big long uuid).10.255.255.255.ip.es.io:9243
10.255.255.255.ip.es.io:9243
And all the above options with 9300 and 9200
How should we register remote clusters in ECE?