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

How to disable monitoring on particular domain or url

I would like to know how to disbale dyatrace monitoring on particular domain, url since it generate problems and the originating issue cannot be fixed for now, we just doesn't want to be flooded with problems.


2 REPLIES 2

skrystosik
DynaMight Guru
DynaMight Guru

If you are talking about application monitoring (RUM) you have to go to your application => edit => advanced settings. There you can create injection rule that may not inject JS on particular Uris. In such case you will not have JS injected where it may produce issues.

If you are talking about excluding particular service calls from monitoring you can go to Settings => Server side & service monitoring => Deep monitoring => Exclude specific incoming request URI’s and they will not show up in dynatrace services. But this will not change that whole process is instrumented and data will be collected by agent. They will be only filtered during storing in DT Server.

Sebastian


Regards, Sebastian

Patrick_H
Dynatrace Champion
Dynatrace Champion

on iOS you can exclude URLs from monitoring by adding filter rules to the Info.plist - see example below

<key>DTXURLFilters</key>
    <array>
        <dict>
            <key>Url Name</key>
            <string>example.com</string>
            <key>Filter</key>
            <string>none</string>
        </dict>
        <dict>
            <key>Url Name</key>
            <!-- URL regex is also allowed -->
            <string>example.(com|org)</string>
            <key>Filter</key>
            <string>none</string>
        </dict>
    <array>

iOS help: https://www.dynatrace.com/support/help/shortlink/ios-hub

Featured Posts