remote-info.asciidoc 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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-prereqs]]
  11. ==== {api-prereq-title}
  12. * If the {es} {security-features} are enabled, you must have the `monitor` or
  13. `manage` <<privileges-list-cluster,cluster privilege>> to use this API.
  14. [[cluster-remote-info-api-desc]]
  15. ==== {api-description-title}
  16. The cluster remote info API allows you to retrieve all of the configured
  17. remote cluster information. It returns connection and endpoint information keyed
  18. by the configured remote cluster alias.
  19. [[cluster-remote-info-api-response-body]]
  20. ==== {api-response-body-title}
  21. `mode`::
  22. Connection mode for the remote cluster. Returned values are `sniff` and
  23. `proxy`.
  24. `connected`::
  25. True if there is at least one connection to the remote cluster.
  26. `initial_connect_timeout`::
  27. The initial connect timeout for remote cluster connections.
  28. [[skip-unavailable]]
  29. `skip_unavailable`::
  30. Whether a {ccs} skips the remote cluster if its nodes are unavailable during the
  31. search. If `true`, a {ccs} also ignores errors returned by the remote cluster.
  32. Refer to <<skip-unavailable-clusters>>.
  33. `seeds`::
  34. Initial seed transport addresses of the remote cluster when sniff mode is
  35. configured.
  36. `num_nodes_connected`::
  37. Number of connected nodes in the remote cluster when sniff mode is
  38. configured.
  39. `max_connections_per_cluster`::
  40. Maximum number of connections maintained for the remote cluster when sniff
  41. mode is configured.
  42. `proxy_address`::
  43. Address for remote connections when proxy mode is configured.
  44. `num_proxy_sockets_connected`::
  45. Number of open socket connections to the remote cluster when proxy mode
  46. is configured.
  47. `max_proxy_socket_connections`::
  48. The maximum number of socket connections to the remote cluster when proxy
  49. mode is configured.