20 Mar 2025 02:45 PM
21 Mar 2025 08:29 PM
I would recommend using the DPL architect after clicking on this specific field and choosing extract. This will allow you to parse the information and then represent it in a new field.
Here are the docs on this, DPL Architect — Dynatrace Docs
03 Apr 2025 01:23 PM
Hello @susmita_k,
you can try the DQL replace pattern
data record(content="URL: /v1/agreements/12345678/vins/xx123456KL456/validate")
| fieldsAdd content = replacePattern(content, "'agreements/' ld '/'", "agreements/***/")
| fieldsAdd content = replacePattern(content, "'vins/' ld '/'", "vins/***/")
Output : URL: /v1/agreements/***/vins/***/validate
here's the documentation reference: replacePattern