Files
elasticsearch-js/docs/reference-monitoring-bulk.asciidoc
2024-12-05 14:46:52 -06:00

81 lines
4.1 KiB
Plaintext

[[reference-monitoring-bulk]]
////////
===========================================================================================================================
|| ||
|| ||
|| ||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|| ||
|| ||
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|| You should update the script that does the generation, which can be found in: ||
|| https://github.com/elastic/elastic-client-generator-js ||
|| ||
|| You can run the script with the following command: ||
|| npm run elasticsearch -- --version <version> ||
|| ||
|| ||
|| ||
===========================================================================================================================
////////
[discrete]
[[client.monitoring.bulk]]
=== client.monitoring.bulk
Used by the monitoring features to send monitoring data.
{ref}/monitor-elasticsearch-cluster.html[{es} documentation]
[discrete]
==== Function signature
[source,ts]
----
(MonitoringBulkRequest, options?): Promise<MonitoringBulkResponse>
----
[discrete]
==== MonitoringBulkRequest
[pass]
++++
<pre>
++++
interface MonitoringBulkRequest<TDocument = unknown, TPartialDocument = unknown> extends <<RequestBase>> {
type?: string
system_id: string
system_api_version: string
interval: <<Duration>>
operations?: (BulkOperationContainer | BulkUpdateAction<TDocument, TPartialDocument> | TDocument)[]
}
[pass]
++++
</pre>
++++
[discrete]
==== MonitoringBulkResponse
[pass]
++++
<pre>
++++
interface MonitoringBulkResponse {
error?: <<ErrorCause>>
errors: boolean
ignored: boolean
took: <<long>>
}
[pass]
++++
</pre>
++++