lib/elasticsearch/api/actions/indices/stats.rb in elasticsearch-api-7.8.0 vs lib/elasticsearch/api/actions/indices/stats.rb in elasticsearch-api-7.8.1

- old
+ new

@@ -21,24 +21,21 @@ module Actions # Provides statistics on operations happening in an index. # # @option arguments [List] :metric Limit the information returned the specific metrics. # (options: _all,completion,docs,fielddata,query_cache,flush,get,indexing,merge,request_cache,refresh,search,segments,store,warmer,suggest) - # @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] :completion_fields A comma-separated list of fields for `fielddata` and `suggest` index metric (supports wildcards) # @option arguments [List] :fielddata_fields A comma-separated list of fields for `fielddata` index metric (supports wildcards) # @option arguments [List] :fields A comma-separated list of fields for `fielddata` and `completion` index metric (supports wildcards) # @option arguments [List] :groups A comma-separated list of search groups for `search` index metric # @option arguments [String] :level Return stats aggregated at cluster, index or shard level # (options: cluster,indices,shards) - # @option arguments [List] :types A comma-separated list of document types for the `indexing` index metric # @option arguments [Boolean] :include_segment_file_sizes Whether to report the aggregated disk usage of each one of the Lucene index files (only applies if segment stats are requested) # @option arguments [Boolean] :include_unloaded_segments If set to true segment stats will include stats for segments that are not currently loaded into memory # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. # (options: open,closed,hidden,none,all) - # @option arguments [Boolean] :forbid_closed_indices If set to false stats will also collected from closed indices if explicitly specified or if expand_wildcards expands to closed indices # @option arguments [Hash] :headers Custom HTTP headers # # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.8/indices-stats.html #