Sha256: 9dea904c8fd1d8fbb57fd2be8617d33d21acc339dbc871f3b4e53b903158a89d

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

module Elasticsearch
  module API
    module Cat
      module Actions

        # Display information about the segments in the shards of an index
        #
        # @example Display information for all indices
        #
        #     puts client.cat.segments
        #
        # @option arguments [List] :index A comma-separated list of index names to limit the returned information
        # @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-segments.html
        #
        def segments(arguments={})
          valid_params = [
            :h,
            :help,
            :v ]
          method = 'GET'
          path   = "_cat/segments"
          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

7 entries across 7 versions & 1 rubygems

Version Path
elasticsearch-api-1.0.14 lib/elasticsearch/api/actions/cat/segments.rb
elasticsearch-api-1.0.13 lib/elasticsearch/api/actions/cat/segments.rb
elasticsearch-api-1.0.12 lib/elasticsearch/api/actions/cat/segments.rb
elasticsearch-api-1.0.11 lib/elasticsearch/api/actions/cat/segments.rb
elasticsearch-api-1.0.10 lib/elasticsearch/api/actions/cat/segments.rb
elasticsearch-api-1.0.9 lib/elasticsearch/api/actions/cat/segments.rb
elasticsearch-api-1.0.7 lib/elasticsearch/api/actions/cat/segments.rb