Hi,
I would like kibana to cross search between 2 nodes:
1 being on the IP x.x.x.214
other one being on the IP x.x.x.215.
I've set up my configuration and the clustersetings return the following:
GET /_cluster/settings?pretty
{
"persistent": {
"search": {
"remote": {
"slave": {
"seeds": [
"x.x.x.215:9200"
]
},
"master": {
"seeds": [
"x.x.x.214:9200"
]
}
}
}
},
"transient": {}
}
However, when I try to get my remote seeds I get the following:
GET /_remote/info?pretty
{
"slave": {
"seeds": [],
"http_addresses": [],
"connected": false,
"num_nodes_connected": 0,
"max_connections_per_cluster": 3,
"initial_connect_timeout": "30s",
"skip_unavailable": false
},
"master": {
"seeds": [],
"http_addresses": [],
"connected": false,
"num_nodes_connected": 0,
"max_connections_per_cluster": 3,
"initial_connect_timeout": "30s",
"skip_unavailable": false
}
}
What am I doing wrong?
Kind regards