'Kibana search query using regular expression

I want to search url include a-id and b-id. But i can't write search query for data has b-id

example url: "/aaa/{a-id}/bbb/{b-id}"

my search query(but isn't not working): "/aaa" AND "/bbb/*", "/aaa/*/bbb/*"

query result is...

/aaa/1/bbb
/aaa/2/bbb
/aaa/3/bbb/1 -> i want only this format
/aaa/1/bbb
/aaa/2/bbb
/aaa/3/bbb

How can i see only this format (/aaa/{a-id}/bbb/{b-id}??

Please tell me query for kibana ui.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source