<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>article Browser monitors: Missing XHR actions for third-party iframes in Troubleshooting</title>
    <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/ta-p/233024</link>
    <description>&lt;H2&gt;Summary&lt;/H2&gt;
&lt;DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;After the transition of the Dynatrace Synthetic Recorder to &lt;STRONG&gt;Manifest V3 (MV3)&lt;/STRONG&gt;, JavaScript injection in Browser Monitors is now based on the &lt;STRONG&gt;Fetch API&lt;/STRONG&gt;. As a result, you may notice that &lt;STRONG&gt;XHR actions from third‑party iFrames&lt;/STRONG&gt; (iFrames loading a different domain than the main page) are missing from the waterfall analysis, even when&amp;nbsp;you've enabled &lt;STRONG&gt;Capture performance metrics for pages loaded in frames&lt;/STRONG&gt; in &lt;A title="Learn about configuring browser monitors and clickpaths." href="https://docs.dynatrace.com/docs/observe/digital-experience/synthetic-monitoring/browser-monitors/configure-browser-monitors#performance-frames" target="_blank" rel="noopener"&gt;the Advanced setup of browser monitor settings&lt;/A&gt; .&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;This article explains &lt;STRONG&gt;why XHR actions from third‑party iFrames are missing in Dynatrace Browser Monitors&lt;/STRONG&gt; and shows the additional configuration required to capture them again.&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;LI-TOC indent="15" liststyle="disc" maxheadinglevel="3"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;
&lt;DIV&gt;
&lt;H2&gt;Why Are XHR Actions from Third‑Party iFrames Missing?&lt;/H2&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;With the move to &lt;STRONG&gt;Manifest V3&lt;/STRONG&gt;, Dynatrace Synthetic Monitoring now relies on the browser’s &lt;STRONG&gt;Fetch API–based injection model&lt;/STRONG&gt;. Chromium’s &lt;STRONG&gt;site isolation&lt;/STRONG&gt; behavior limits visibility into network requests initiated from third‑party iFrames.&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Because of this, XHR actions from those iFrames are excluded unless an additional Chromium startup flag is explicitly enabled.&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;H2&gt;How to Capture Missing XHR Actions from Third‑Party iFrames&lt;/H2&gt;
&lt;P&gt;To capture XHR actions from third-party iframes,&amp;nbsp;you must&amp;nbsp;enable&lt;/P&gt;
&lt;DIV&gt;enable an additional &lt;STRONG&gt;Chromium startup flag,&amp;nbsp;&lt;/STRONG&gt;&lt;CODE&gt;disable-site-isolation-trials,&lt;/CODE&gt; in &lt;STRONG&gt;Browser Monitor script mode&lt;/STRONG&gt;.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;H3&gt;Required Configuration&lt;/H3&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Add the following flag to &lt;CODE&gt;chromiumStartupFlags&lt;/CODE&gt;:&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&lt;LI-CODE lang="markup"&gt;{
    "configuration": {
        "chromiumStartupFlags": {
            "disable-web-security": false,
            "disable-site-isolation-trials": true
        },&lt;/LI-CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;H3&gt;Important Notes&lt;/H3&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;By default this flag is not shown in the script, but it has the default value of &lt;CODE&gt;disable-site-isolation-trials&lt;/CODE&gt; is &lt;CODE&gt;false&lt;/CODE&gt;.&amp;nbsp;&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;&lt;STRONG&gt;Do not overwrite existing Chromium flags&lt;/STRONG&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;You may already have flags such as:
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;&lt;CODE&gt;disable-web-security&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;&lt;CODE&gt;ignore-certificate-errors&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;If so, keep them and only &lt;STRONG&gt;add or update&lt;/STRONG&gt; &lt;CODE&gt;disable-site-isolation-trials&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Enabling this flag allows Dynatrace Browser Monitors to capture XHR actions originating from third‑party iFrames.&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;H2&gt;Verification&lt;/H2&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;After applying the configuration:&lt;/DIV&gt;
&lt;OL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Save the Browser Monitor&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Execute the monitor on demand&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Review the waterfall analysis&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Confirm that XHR actions from third‑party iFrames are now visible&lt;/LI&gt;
&lt;/OL&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;If XHR actions are still missing, double‑check that:&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;&lt;STRONG&gt;Capture performance metrics for pages loaded in frames&lt;/STRONG&gt; in &lt;A title="Learn about configuring browser monitors and clickpaths." href="https://docs.dynatrace.com/docs/observe/digital-experience/synthetic-monitoring/browser-monitors/configure-browser-monitors#performance-frames" target="_blank" rel="noopener"&gt;the Advanced setup of browser monitor settings&lt;/A&gt;.&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;No Chromium flags were accidentally removed.&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;The requests originate from third‑party iFrames (different domain).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;H2&gt;Frequently Asked Questions&lt;/H2&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;Why does this only affect third‑party iFrames?&lt;/H3&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Chromium site isolation restricts access to network activity across different domains. Third‑party iFrames fall under these restrictions unless site isolation trials are disabled.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;H3&gt;Does this affect first‑party iFrames?&lt;/H3&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;No. XHR actions from first‑party iFrames (same domain as the main page) continue to be captured without additional configuration.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;H3&gt;Is this behavior specific to MV3?&lt;/H3&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;Yes. This behavior was introduced after the Synthetic Recorder transitioned to Manifest V3 and the Fetch API–based injection model.&lt;/DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;H2 id="toc-hId-1971787789"&gt;What's Next&lt;/H2&gt;
&lt;DIV&gt;
&lt;DIV class="paragraph-in-scc-markdown-text ___1ngh792 ftgm304 f1iaxwol"&gt;If enabling &lt;CODE&gt;disable-site-isolation-trials&lt;/CODE&gt; doesn’t resolve the issue, open a support chat and provide:&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;A link to the Browser Monitor&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Confirmation that the flag is enabled&lt;/LI&gt;
&lt;LI class="___ccc16d0 fje8fi8 f1ng9h0j f1bwykku f18jd3zf"&gt;Example URLs of affected third‑party iFrames&lt;/LI&gt;
&lt;/UL&gt;
&lt;/DIV&gt;
&lt;H3&gt;&lt;BR /&gt;Related reading&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp; &lt;A class="" href="https://community.dynatrace.com/t5/Troubleshooting/Synthetic-Troubleshooting-Map/ta-p/250426" target="_blank" rel="noopener"&gt;Synthetic Troubleshooting Map&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp; &lt;A href="https://docs.dynatrace.com/docs/shortlink/browser-monitor-script-mode" target="_self"&gt;Script mode for Browser Monitor configuration&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp; &lt;A href="https://docs.dynatrace.com/docs/observe/digital-experience/synthetic-monitoring/browser-monitors/configure-browser-monitors#configure-an-existing-browser-monitor" target="_self"&gt;(Classic) Configure Browser monitors&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":open_book:"&gt;📖&lt;/span&gt;&amp;nbsp; &lt;A href="https://docs.dynatrace.com/docs/observe/digital-experience/synthetic-on-grail/synthetic-app/create-configure-browser-monitors#other" target="_self"&gt;(Synthetic app) Configure Browser Monitors&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 14 May 2026 14:23:42 GMT</pubDate>
    <dc:creator>nandini_balakri</dc:creator>
    <dc:date>2026-05-14T14:23:42Z</dc:date>
    <item>
      <title>Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/ta-p/233024</link>
      <description>&lt;P&gt;&lt;LI-TOC indent="15" liststyle="disc" maxheadinglevel="2"&gt;&lt;/LI-TOC&gt;&lt;/P&gt;
&lt;DIV class="lia-message-template-content-zone"&gt;
&lt;P&gt;*&lt;EM&gt;Use a table of contents for longer articles.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;H1&gt;Summary&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This is a mandatory section.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Short description of which part of the Dynatrace platform the article refers to and what kind of problem it will help resolve / task it will describe.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Problem&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This is a mandatory section.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Provide a precise description of the problem / task to be described.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Troubleshooting steps&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This section can be omitted.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1&gt;Resolution&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This section can be omitted for ticket‑creation articles.&lt;/EM&gt;&lt;/P&gt;
&lt;H1&gt;What's next&lt;/H1&gt;
&lt;P&gt;&lt;EM&gt;*This is a mandatory section.&lt;/EM&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 14 May 2026 14:23:42 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/ta-p/233024</guid>
      <dc:creator>nandini_balakri</dc:creator>
      <dc:date>2026-05-14T14:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/235877#M547</link>
      <description>&lt;P&gt;The following flag is by default appearing in all scripts in my environment: "disable-web-security": false ... I assume this is why this fix still doesn't work for me, because it is overwriting.&lt;/P&gt;&lt;P&gt;Even when I try to manually remove this flag from a script, it immediately gets added back in. How would I stop that flag from automatically being added?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 18:55:03 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/235877#M547</guid>
      <dc:creator>thecutch22</dc:creator>
      <dc:date>2024-01-30T18:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/235966#M549</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/70823"&gt;@thecutch22&lt;/a&gt;&amp;nbsp;you need to have both, please try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;{
    "configuration": {
        "chromiumStartupFlags": {
            "disable-site-isolation-trials": true,
            "disable-web-security": false
        },&lt;/LI-CODE&gt;
&lt;P&gt;If you want to enable disable-web-security instead, you should use&amp;nbsp;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;disable-web-security": true&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 16:28:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/235966#M549</guid>
      <dc:creator>HannahM</dc:creator>
      <dc:date>2024-01-31T16:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/249380#M686</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/1433"&gt;@HannahM&lt;/a&gt;,&lt;BR /&gt;I am facing similar issue. Sometimes I noticed that on this steps I do not have full waterfall.&lt;BR /&gt;&lt;BR /&gt;Over the past week, I observed that the waterfall data was fully captured only once, as shown below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-06-28 105317.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/20824i2452D4E6AC29B9F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2024-06-28 105317.png" alt="Screenshot 2024-06-28 105317.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;However, for other similar runs during the same period, the waterfall data was missing, as illustrated here:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-06-28 110352.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/20825i86A0E347EC37FF19/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2024-06-28 110352.png" alt="Screenshot 2024-06-28 110352.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I would appreciate any insights or recommendations on how to resolve this issue. Are there specific configurations or conditions that could be affecting the consistent capture of waterfall data?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 09:15:08 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/249380#M686</guid>
      <dc:creator>GerardoAud</dc:creator>
      <dc:date>2024-06-28T09:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/249381#M687</link>
      <description>&lt;P&gt;Hi Gerardo,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is more easily investigated by looking at the monitor itself. I would recommend opening a chat or support ticket for this.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That said, if you have already added the settings on this page, I would try changing the wait for this page. While testing, you could try 'Wait for a specific period time' and maybe set it to 60s. Then you can quickly see if changing the wait strategy would help. I don't recommend leaving it as a time wait, usually wait for a specified element is a better option, as you can then choose an element that you know appears later in the page loading.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could also check if there is a service worker on the page, you can either&amp;nbsp;&lt;SPAN&gt;open the site in one tab and in the next tab open&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;chrome://inspect/#service-workers&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;which will show you the active service workers, or if you click F12 and open devTools a search for "ngsw" usually reveals if there is one. If there is one, I recommend applying the "dsw=1" custom configuration to disable the service worker, as described &lt;A href="https://community.dynatrace.com/t5/Synthetic-Monitoring/Question-about-the-advanced-setup-custom-configuration/m-p/249174/highlight/true#M2495" target="_self"&gt;here.&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;It can also be related to the frameworks or JS Agent settings. So you could test each of the settings in Monitor&amp;gt; Edit&amp;gt; Advanced Setup&amp;gt; Enable custom RUM JavaScript Settings and see if any help.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2024 09:33:24 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/249381#M687</guid>
      <dc:creator>HannahM</dc:creator>
      <dc:date>2024-06-28T09:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/249483#M688</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/1433"&gt;@HannahM&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank you for the detailed advice. I tried the steps you suggested, but I still have the same issue. I can't see the CSS element/image that I should be seeing. You can check the screenshot below for more details.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GerardoAud_0-1719827528504.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/20847i009791EEE299BC74/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GerardoAud_0-1719827528504.png" alt="GerardoAud_0-1719827528504.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2024 09:52:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/249483#M688</guid>
      <dc:creator>GerardoAud</dc:creator>
      <dc:date>2024-07-01T09:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/249484#M689</link>
      <description>&lt;P&gt;That's a shame. Please open a chat to investigate this further. Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2024 09:54:24 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/249484#M689</guid>
      <dc:creator>HannahM</dc:creator>
      <dc:date>2024-07-01T09:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/252038#M716</link>
      <description>&lt;P&gt;Is there a way to add these flags to multiple monitors at once via the API or only through JSON script editing?&amp;nbsp; We have many monitored apps using iframe and this would be helpful to add.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 21:10:49 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/252038#M716</guid>
      <dc:creator>Jennifer</dc:creator>
      <dc:date>2024-07-30T21:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Browser monitors: Missing XHR actions for third-party iframes</title>
      <link>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/252071#M718</link>
      <description>&lt;P&gt;You can use the &lt;A href="https://docs.dynatrace.com/docs/dynatrace-api/environment-api/synthetic/synthetic-monitors/put-a-monitor" target="_self"&gt;Synthetic Monitors API&lt;/A&gt; to update this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 10:10:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Troubleshooting/Browser-monitors-Missing-XHR-actions-for-third-party-iframes/tac-p/252071#M718</guid>
      <dc:creator>HannahM</dc:creator>
      <dc:date>2024-07-31T10:10:48Z</dc:date>
    </item>
  </channel>
</rss>

