Sha256: 62bf54ed9a19a045688b9ff69bbcd657aaac7d1b329948a6bbed0f5fbbca5bc1
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
# Licensed to Elasticsearch B.V under one or more agreements. # Elasticsearch B.V licenses this file to you under the Apache 2.0 License. # See the LICENSE file in the project root for more information module Elasticsearch module XPack module API module Watcher module Actions # Return the current Watcher metrics # # @option arguments [String] :metric Additional metrics to be included in the response # (options: _all, queued_watches, pending_watches) # # @see https://www.elastic.co/guide/en/x-pack/current/watcher-api-stats.html # def stats(arguments={}) valid_params = [ :metric, :emit_stacktraces ] method = Elasticsearch::API::HTTP_GET path = "_xpack/watcher/stats" params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, valid_params body = nil perform_request(method, path, params, body).body end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems