I have uploaded Apache access logs of my website into Elasticsearch, connected Kibana with it and want to filter those log entries.
My logs contain 2 types of user requests (urls):
/search?q=foobar
and
/sequence-search?q=foobar
I want to make a Lucene query that returns requests of the first kind, but filters out the second kind.
I tried writing the following Lucene query, which doesn't work: request:"\/search\?q\="
.
As you can see, I requested exact match and escaped the special characters. What's wrong?