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

How to write Reg Ex to match URLs while configuring pages in EUM

Arup.Majumder
Builder

Hello Friends,

 

I am trying to include rules using "RegEx match on the URL" while instrumenting certain pages in EUM . Any documentation is there which I can refer ?

e.g

https://www.abcxyz.com/app/#/app/account/<GUID>/overview

https://www.abcdef.com/app/#/app/account/<GUID>/overview

 

I am looking for adding two separate rules for the above mentioned pages in EUM.How to write regex for these. Any lead will be appreciated. Thanks in Advance !

 

Regards,

Arup

2 REPLIES 2

Mario.Morelli
Architect

Hi there

 

You can use regular regex, for below the following should work

 

https:\/\/www.abcxyz.com\/app\/#\/app\/account\/(.*)\/overview

 

https:\/\/www.abcdef.com\/app\/#\/app\/account\/(.*)\/overview



Found something helpful? Click the Accept as Solution button to help others find answers faster.
Liked something? Click the Thumbs Up button.

Learn more about me in the Community Member Spotlight Q & A

Thank you Mario. It worked