Sha256: f85005b6b14411cfdd58ce5c3ef59b608f539e57f25609f90c6a547f7c5420dc

Contents?: true

Size: 1.7 KB

Versions: 63

Compression:

Stored size: 1.7 KB

Contents

module Elasticsearch
  module API
    module Indices
      module Actions

        # Provides low-level information about shards (allocated nodes, exceptions, ...)
        #
        # @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
        # @option arguments [List] :status A comma-separated list of statuses used to filter on shards to get store information for (options: green, yellow, red, all)
        # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
        # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
        # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
        # @option arguments [String] :operation_threading
        #
        # @see http://www.elastic.co/guide/en/elasticsearch/reference/master/indices-shards-stores.html
        #
        def shard_stores(arguments={})
          valid_params = [
            :status,
            :ignore_unavailable,
            :allow_no_indices,
            :expand_wildcards,
            :operation_threading ]
          method = 'GET'
          path   = Utils.__pathify Utils.__escape(arguments[:index]), "_shard_stores"
          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

63 entries across 63 versions & 6 rubygems

Version Path
logstash-filter-cache-redis-0.3.0 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/lib/elasticsearch/api/actions/indices/shard_stores.rb
logstash-filter-cache-redis-0.2.0 vendor/bundle/jruby/1.9/gems/elasticsearch-api-5.0.4/lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-5.0.4 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-2.0.2 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-5.0.3 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-5.0.2 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-5.0.1 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-2.0.1 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-1.1.2 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-1.1.1 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-5.0.0 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-5.0.0.pre lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-2.0.0 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-1.1.0 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-2.0.0.pre lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-1.1.pre lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-1.0.18 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-1.0.17 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-1.0.16 lib/elasticsearch/api/actions/indices/shard_stores.rb
elasticsearch-api-1.0.16.pre2 lib/elasticsearch/api/actions/indices/shard_stores.rb