mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-02 08:59:09 +00:00
extract
option to filter keys out of the search
and http
input.
Via the `extract` option an array of keys can be defined that will be extracted from the input response in a streaming manner and used as payload instead of the entire input response. http example: ```json { "input" : { "http" : { "request" : { "host" : "host.domain", "port" : 9200, "path" : "/idx/_search" }, "extract" : ["hits.hits.total", "aggregations.my_agg"] } } ... } ``` search example: ```json { "input" : { "search" : { "request" : { "indices" : [ "idx" ], "body" : { "query" : { "match_all" : {} } } }, "extract" : ["hits.hits.total", "aggregations.my_agg"] } } ... } ``` Closes elastic/elasticsearch#167 Original commit: elastic/x-pack-elasticsearch@437c35698b
= Elasticsearch Alerts Plugin This plugins adds alerting features to elasticsearch You can build the plugin with `mvn package`. The documentation is put in the `docs/` directory.
Description
Languages
Java
99.5%
Groovy
0.4%