remote-info.asciidoc 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 the remote cluster is skipped in case it is searched through
  31. a {ccs} request but none of its nodes are available.
  32. `seeds`::
  33. Initial seed transport addresses of the remote cluster when sniff mode is
  34. configured.
  35. `num_nodes_connected`::
  36. Number of connected nodes in the remote cluster when sniff mode is
  37. configured.
  38. `max_connections_per_cluster`::
  39. Maximum number of connections maintained for the remote cluster when sniff
  40. mode is configured.
  41. `proxy_address`::
  42. Address for remote connections when proxy mode is configured.
  43. `num_proxy_sockets_connected`::
  44. Number of open socket connections to the remote cluster when proxy mode
  45. is configured.
  46. `max_proxy_socket_connections`::
  47. The maximum number of socket connections to the remote cluster when proxy
  48. mode is configured.