I have been having a lot of problems getting any regex queries to work at all from kibana.
We have a field with an exact string value of "Expected group query to return a single result but instead got 1261". The field is non-analyzed.
Our query is:
MICROSERVICE_NAME: directory-push* AND NOT LOG_MESSAGE: "Attempted to poll" AND NOT LOG_MESSAGE: "Unable to connect to:" AND EX_MSG: /Expected.*/
The first 3 pieces are regular string queries, and the last piece is a regex query. I believe my syntax is correct, encapsulating the regex in forward slashes but the query fails to return results, and when i remove the regex piece, I can clearly see the rows it should match.
Any thoughts on what could be wrong here?? The only thing that I can think of is that there is some syntax error somewhere when i am joining the clauses together in the search bar, as the regex itself should be working...
I've also tested the regex with an anchor (i.e. /^Expected.*/) with no luck. Also, I was originally using a much more complicated regex, this is a much simplified one in the interests of getting a regex query to work at all.
Thanks!