Sha256: efab3e7dddf58194194a5e300cd51740ad203b43abaf51311d350f14169134f6

Contents?: true

Size: 1.78 KB

Versions: 17

Compression:

Stored size: 1.78 KB

Contents

module Elasticsearch
  module API
    module Cat
      module Actions

        # Return information about field data usage across the cluster
        #
        # @example Return the total size of field data
        #
        #     client.cat.fielddata
        #
        # @example Return both the total size and size for specific fields
        #
        #     client.cat.fielddata fields: 'title,body'
        #
        # @option arguments [List] :fields A comma-separated list of fields to include in the output
        # @option arguments [String] :bytes The unit in which to display byte values (options: b, k, m, g)
        # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node
        #                                   (default: false)
        # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
        # @option arguments [List] :h Comma-separated list of column names to display
        # @option arguments [Boolean] :help Return help information
        # @option arguments [Boolean] :v Verbose mode. Display column headers
        #
        # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/cat-fielddata.html
        #
        def fielddata(arguments={})
          valid_params = [
            :bytes,
            :local,
            :master_timeout,
            :h,
            :help,
            :v,
            :fields ]

          fields = arguments.delete(:fields)

          method = HTTP_GET
          path   = Utils.__pathify "_cat/fielddata", Utils.__listify(fields)
          params = Utils.__validate_and_extract_params arguments, valid_params
          body   = nil

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

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
elasticsearch-api-1.1.3 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-2.0.2 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-2.0.1 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.1.2 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.18 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.17 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.16 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.16.pre2 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.16.pre lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.15 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.14 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.13 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.12 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.11 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.10 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.9 lib/elasticsearch/api/actions/cat/fielddata.rb
elasticsearch-api-1.0.7 lib/elasticsearch/api/actions/cat/fielddata.rb