module Elasticsearch::API::Remote::Actions

Public Instance Methods

info(arguments = {}) click to toggle source

Returns all of the configured remote cluster information

@see www.elastic.co/guide/en/elasticsearch/reference/master/remote-info.html

# File lib/elasticsearch/api/actions/remote/info.rb, line 26
def info(arguments = {})
  method = HTTP_GET
  path   = "_remote/info"
  params = {}
  body   = nil

  perform_request(method, path, params, body).body
end