Sha256: 837fe3fe9d74d4a9a6951fb5606f0d8e22e56e4b80a5d1c30818142c29c96bfa
Contents?: true
Size: 886 Bytes
Versions: 5
Compression:
Stored size: 886 Bytes
Contents
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
5 entries across 5 versions & 1 rubygems