I'm trying to write a regex in Kibana (v 7.9.1) and I want to get all paths that are like /rest/requirements/<ID_HERE>/ and nothing else at the end. I would expect that the following would work:
"/rest/requirements/[0-9]*/"
After several tests, I noticed that the following query don't work either: "/rest/requirements/"
While if I do .*requirements.*, for example, it works.
So there is something with "/" that I cannot understand. I tried the following as well without success:
.rest.requirements.*
//rest//requirements.*
\/rest\/requirements.*
\\rest\\requirements.*
Btw, I am using the filter as Query DSL as shown below.

