Searching Elasticsearch
October 11, 2016
I wanted to return a list of entries from ElasticSearch, and I wanted to just return ones where the _type field was set to c.
http://host:9200/logstash-2016.10.05/_search?q=_type:c&pretty=true
This URL will filter to just the rows with a _type of c.
{ "took" : 28, "timed_out" : false, "_shards" : { "total" …