Hi,
How do I perform a wildcard search against a single field?
I tried the following in kibana search bar: http_request_path: "*openorders*"
http_request_path: "*openorders*"
but it returns results in Kibana for any fields where its value contains "openorders"
How do have it only return results only if the http_request_path field has values of "*openorders*"
"*openorders*"
Thanks
You are probably getting an issue because of the double-quotes. Can you try without them? I.e http_request_path: *openorders*
http_request_path: *openorders*
You can also try doing a wildcard search using a JSON query, such as
{ "wildcard": { "http_request_path": "*openorders*" } }
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.