Module: Elasticsearch::API::Monitoring::Actions

Included in:
MonitoringClient
Defined in:
lib/elasticsearch/api/namespace/monitoring.rb,
lib/elasticsearch/api/actions/monitoring/bulk.rb

Instance Method Summary collapse

Instance Method Details

#bulk(arguments = {}) ⇒ Object

Send monitoring data

or the conveniency “combined” format can be passed, refer to Elasticsearch::API::Utils.__bulkify documentation.

Parameters:

  • arguments (Hash) (defaults to: {})

    a customizable set of options

Options Hash (arguments):

  • :system_id (String)

    Identifier of the monitored system (Required)

  • :system_api_version (String)

    API Version of the monitored system (Required)

  • :interval (Time)

    Collection interval (e.g., ‘10s’ or ‘10000ms’) of the payload (Required)

  • :headers (Hash)

    Custom HTTP headers

  • :body (String|Array)

    The operation definition and data (action-data pairs), separated by newlines. Array of Strings, Header/Data pairs,

Raises:

  • (ArgumentError)

See Also:



36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/elasticsearch/api/actions/monitoring/bulk.rb', line 36

def bulk(arguments = {})
  request_opts = { endpoint: arguments[:endpoint] || 'monitoring.bulk' }

  raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

  arguments = arguments.clone
  headers = arguments.delete(:headers) || {}

  body   = arguments.delete(:body)

  method = Elasticsearch::API::HTTP_POST
  path   = '_monitoring/bulk'
  params = Utils.process_params(arguments)

  payload = if body.is_a? Array
              Elasticsearch::API::Utils.__bulkify(body)
            else
              body
            end

  headers.merge!('Content-Type' => 'application/x-ndjson')
  Elasticsearch::API::Response.new(
    perform_request(method, path, params, payload, headers, request_opts)
  )
end