mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-12 07:55:24 +00:00
The enrich api returns enrich coordinator stats and information about currently executing enrich policies. The coordinator stats include per ingest node: * The current number of search requests in the queue. * The total number of outstanding remote requests that have been executed since node startup. Each remote request is likely to include multiple search requests. This depends on how much search requests are in the queue at the time when the remote request is performed. * The number of current outstanding remote requests. * The total number of search requests that `enrich` processors have executed since node startup. The current execution policies stats include: * The name of policy that is executing * A full blow task info object that is executing the policy. Relates to #32789
22 lines
605 B
Plaintext
22 lines
605 B
Plaintext
[[enrich-apis]]
|
|
== Enrich APIs
|
|
|
|
The following enrich APIs are available for managing enrich policies:
|
|
|
|
* <<put-enrich-policy-api>> to add or update an enrich policy
|
|
* <<delete-enrich-policy-api>> to delete an enrich policy
|
|
* <<get-enrich-policy-api>> to return information about an enrich policy
|
|
* <<execute-enrich-policy-api>> to execute an enrich policy
|
|
* <<enrich-stats-api>> to get enrich related stats
|
|
|
|
|
|
include::put-enrich-policy.asciidoc[]
|
|
|
|
include::delete-enrich-policy.asciidoc[]
|
|
|
|
include::get-enrich-policy.asciidoc[]
|
|
|
|
include::execute-enrich-policy.asciidoc[]
|
|
|
|
include::enrich-stats.asciidoc[]
|