In Kibana, I need to match string on a field 'url' that contains, for example '/new-product/p1' or '/new-product/sample' but not '/new-product/?type=1' or '/new-product/' only. How can do it?
1 Like
Try url:/.*\/new-product\/[^?]+/
. Note: regex search will be slow!
1 Like