Sha256: d8ffae367f569aac39a3bb2beaeae1811e1c6b99a7a6967140bc829c25642da9
Contents?: true
Size: 808 Bytes
Versions: 7
Compression:
Stored size: 808 Bytes
Contents
module Elasticsearch module API module Actions # Return a list of running benchmarks # # @example # # client.list_benchmarks # # @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 [String] :type The name of the document type # # @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/search-benchmark.html # def list_benchmarks(arguments={}) valid_params = [ ] method = HTTP_GET path = "_bench" params = {} body = nil perform_request(method, path, params, body).body end end end end
Version data entries
7 entries across 7 versions & 1 rubygems