Logstash-plugin elasticsearch: apply executing searches in logstash
问题 Here is my excuting search to query my elasticsearch database (it works fine): curl -XPOST 'localhost:9200/test/_search?pretty' -d ' { "size":1, "query": { "match": { "log.device":"xxxx" } }, "sort" : [ { "_timestamp" : { "order":"desc" } }] }' I want to do the same thing through logstash with the plugin elasticsearch. However, there is no "size" option available in the website https://www.elastic.co/guide/en/logstash/current/plugins-filters-elasticsearch.html elasticsearch { hosts => [