I'm using Kibana's Discover page to find some data in my application. It's working find, but when I want to find something like this:
app_message: "You are the /\d/ user in our system"
I can't catch it properly.
I was also trying something like these:
app_message: "You are the /[0-9]+/ user in our system"
app_message: "You are the \d user in our system"
app_message: "You are the [1 TO *] user in our system"
app_message:/.You are the [0-9]+ . user in our system"
and so on..
But it doesn't work. So, is there any possible way to find this string?
NOTE: I want to find full string, not just a number, etc.
From my "Management" page:
app_message is searchable and analyzed.
From Advanced Settings page:
query:queryString:options has { "analyze_wildcard": true }
Any ideas?