mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-23 05:15:04 +00:00
compare
condition
A simple `condition` that compares a path into the model in the execution context to a value. The comparison is based on the following possible operators: `eq`, `not_eq`, `lt`, `lte`, `gt`, `gte`. The following example shows a `compare` condition that checks if the total hits in the payload is greater or equal to 5. ``` { "compare" : { "ctx.payload.hits.total" : { "gte" : "5" } } } ``` Original commit: elastic/x-pack-elasticsearch@6d4f2bbf10
= Elasticsearch Watcher Plugin This plugins adds conditioned scheduled tasks features to elasticsearch - such a task is called a `Watch`. You can build the plugin with `mvn package`. The documentation is put in the `docs/` directory.
Description
Languages
Java
99.5%
Groovy
0.4%