Remote cluster information

Introduced 1.0

This operation provides connection information for any remote OpenSearch clusters that you’ve configured for the local cluster, such as the remote cluster alias, connection mode (sniff or proxy), IP addresses for seed nodes, and timeout settings.

The response is more comprehensive and useful than a call to _cluster/settings, which only includes the cluster alias and seed nodes.

Path and HTTP methods

  1. GET _remote/info

copy

Response

  1. {
  2. "opensearch-cluster2": {
  3. "connected": true,
  4. "mode": "sniff",
  5. "seeds": [
  6. "172.28.0.2:9300"
  7. ],
  8. "num_nodes_connected": 1,
  9. "max_connections_per_cluster": 3,
  10. "initial_connect_timeout": "30s",
  11. "skip_unavailable": false
  12. }
  13. }