Hi, I have a nested json data from a log source. It has a URL field but it can't be directly mapped to "url_back_to_product". We need to extract a part of it and concatenate it to a standard Top Level Domain
Sample json
"info": {
"data": "https://myvendor.com:443/string/string/string-abcd1-abcd2-abcd3-abcd4-abcd5" ,
}
Only the final part of the URL (string-abcd1-abcd2-abcd3-abcd4-abcd5 )has to be extracted and concatenated to a standard static tld - https://mycompany.com/strings/
Field Extraction
url_back_to_product - https://mycompany.com/strings/string-abcd1-abcd2-abcd3-abcd4-abcd5
Please advise on the possible configurations.