mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
The chain transform : ``` "transform" : { "chain" : [ { "search" : { "search_type" : "count", "indices" : [ "logstash-*" ], "body" : { "query" : { "match" : { "priority" : "error"} } } } }, { "script" : "return [ error_count : ctx.payload.hits.total ]" } ] }, ``` Was failing because the chain transform (wrongly) refused to parse the script string as a transform. This change will allow the transforms to determine what should parse or not. Fixes: elastic/elasticsearch#475 Updates after review Original commit: elastic/x-pack-elasticsearch@78c1a2498d
= 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%