So I have a regex:
rex field=requestUrl "^\w+:\/\/[^\/]+\/(?<uri>.+)$"
And then I use the value of that in a lookup
lookup uri-operationName uri as uri, verb as httpMethod OUTPUTNEW operationName as operationName
Works great, most of the time. As you can see below, if I search for an operationName of "Get Tenders By Account ID" I get results with both operationNames.
uri verb operationName
service-name/accounts/* GET Get By Account ID
service-name/accounts/*/tenders GET Get Tenders By Account ID
How would I go about fixing that within either the regex, search or lookup?
... View more