I want to use http_poller to do the equivalent of this:
curl -XGET 'http://esnode:9200/_all/_search?pretty' -d '{
"query": {
"term": {
"type" : "syslog"
}
}
}'
Basically, I want the full power of the Elasticsearch search api.
Using the URI search feature does work. But I think it would be hard to get very complicated in your searches.
Any suggestions? Am I missing something obvious in the docs?
Thanks!