I have this URL string:
curl -XGET "http://es.host.com:9200/filebeat/_search?q=type:MEMORYUSE&size=100&pretty=true")
It works like I want, but now I would like to limit the MEMORYUSE to only return one host. Example I would like to use the sting above to pull back MEMORYUSE for only server darthvader. Right now I get all servers and I would like to limit to only the server I need.
Thank you in advance for any guidance you can provide.
Wayne