cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to Replace certain part of URL in a log content

susmita_k
Organizer

I have a log content like this :

URL: /v1/agreements/12345678/vins/xx123456KL456/validate

How can I replace the 3rd and 5th portion so that for all vins and agreements # dynatrace treat them as same url ?

2 REPLIES 2

KeeganNelson
Dynatrace Advisor
Dynatrace Advisor

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

Mohammed-Samy
Visitor

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 

 

Featured Posts