remote-info.asciidoc 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. [[cluster-remote-info]]
  2. === Remote cluster info API
  3. ++++
  4. <titleabbrev>Remote cluster info</titleabbrev>
  5. ++++
  6. Returns configured remote cluster information.
  7. [[cluster-remote-info-api-request]]
  8. ==== {api-request-title}
  9. `GET /_remote/info`
  10. [[cluster-remote-info-api-desc]]
  11. ==== {api-description-title}
  12. The cluster remote info API allows you to retrieve all of the configured
  13. remote cluster information. It returns connection and endpoint information keyed
  14. by the configured remote cluster alias.
  15. [[cluster-remote-info-api-response-body]]
  16. ==== {api-response-body-title}
  17. `mode`::
  18. Connection mode for the remote cluster. Returned values are `sniff` and
  19. `proxy`.
  20. `connected`::
  21. True if there is at least one connection to the remote cluster.
  22. `initial_connect_timeout`::
  23. The initial connect timeout for remote cluster connections.
  24. [[skip-unavailable]]
  25. `skip_unavailable`::
  26. Whether the remote cluster is skipped in case it is searched through
  27. a {ccs} request but none of its nodes are available.
  28. `seeds`::
  29. Initial seed transport addresses of the remote cluster when sniff mode is
  30. configured.
  31. `num_nodes_connected`::
  32. Number of connected nodes in the remote cluster when sniff mode is
  33. configured.
  34. `max_connections_per_cluster`::
  35. Maximum number of connections maintained for the remote cluster when sniff
  36. mode is configured.
  37. `proxy_address`::
  38. Address for remote connections when proxy mode is configured.
  39. `num_proxy_sockets_connected`::
  40. Number of open socket connections to the remote cluster when proxy mode
  41. is configured.
  42. `max_proxy_socket_connections`::
  43. The maximum number of socket connections to the remote cluster when proxy
  44. mode is configured.