<?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>topic Re: Why Are “Page change” Events Not Returned in userAction Queries? in Real User Monitoring</title>
    <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Why-Are-Page-change-Events-Not-Returned-in-userAction-Queries/m-p/299903#M7403</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/90253"&gt;@Aboud1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is expected behavior.&amp;nbsp;"Page change" events in the session timeline are route change detections that don't always get promoted to full user actions in the&amp;nbsp;userAction&amp;nbsp;table.&lt;/P&gt;&lt;P&gt;The&amp;nbsp;userAction&amp;nbsp;table only contains actions that triggered measurable network/rendering activity (Load, XHR, Custom actions). Route changes displayed in the timeline are visual markers — not queryable via USQL unless they generated actual XHR calls.&lt;/P&gt;&lt;P&gt;Try this to get closer:&lt;/P&gt;&lt;P&gt;SELECT count(*), type&lt;BR /&gt;FROM userAction&lt;BR /&gt;WHERE application = "xxxxxx"&lt;BR /&gt;AND usersession.internalUserId = "xxxxxxxx"&lt;BR /&gt;AND name LIKE "%/en/home%"&lt;BR /&gt;GROUP BY type&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also check if missing actions were captured as XHR type with auto-generated names rather than the page URL.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sujit&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 25 May 2026 11:15:25 GMT</pubDate>
    <dc:creator>sujit_k_singh</dc:creator>
    <dc:date>2026-05-25T11:15:25Z</dc:date>
    <item>
      <title>Why Are “Page change” Events Not Returned in userAction Queries?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Why-Are-Page-change-Events-Not-Returned-in-userAction-Queries/m-p/299897#M7402</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;
&lt;P&gt;We are noticing a discrepancy between the actions visible in the User Session timeline and the results returned from querying the userAction table.&lt;/P&gt;
&lt;P&gt;Session contains the following visible events related to /en/home:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Load → loading of page /en/home&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Page change → /en/home&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;From the session timeline, the total visible /en/home actions are 10.&lt;/P&gt;
&lt;P&gt;However, when querying userAction, we are getting lower counts.&lt;/P&gt;
&lt;P&gt;Query #1:&lt;/P&gt;
&lt;PRE&gt;SELECT count(*)
FROM userAction
WHERE (
    targetUrl LIKE "%/en/home%"
    OR name = "loading of page /en/home"
)
AND application = "xxxxxx"
AND usersession.internalUserId = "xxxxxxxx"&lt;/PRE&gt;
&lt;P&gt;Result: 7&lt;/P&gt;
&lt;P&gt;Query #2:&lt;/P&gt;
&lt;PRE&gt;SELECT count(*)
FROM userAction
WHERE (
    name = "loading of page /en/home"
    OR name = "/en/home"
)
AND application = "xxxxxxxx"
AND usersession.internalUserId = "xxxxxxxxxxxxxxxxxxxxx"&lt;/PRE&gt;
&lt;P&gt;Result: 4&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Aboud1_0-1779538598422.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/33258iD86FB38F7045E586/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Aboud1_0-1779538598422.png" alt="Aboud1_0-1779538598422.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;It seems that some “Page change” events visible in the session timeline are not queryable from the userAction table.&lt;/P&gt;
&lt;P&gt;Has anyone faced similar behavior before?&lt;BR /&gt;Is there a recommended way to retrieve all visible session timeline actions (including Page change events) through queries?&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;Aboud&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2026 12:30:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Why-Are-Page-change-Events-Not-Returned-in-userAction-Queries/m-p/299897#M7402</guid>
      <dc:creator>Aboud1</dc:creator>
      <dc:date>2026-05-25T12:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why Are “Page change” Events Not Returned in userAction Queries?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Why-Are-Page-change-Events-Not-Returned-in-userAction-Queries/m-p/299903#M7403</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/90253"&gt;@Aboud1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is expected behavior.&amp;nbsp;"Page change" events in the session timeline are route change detections that don't always get promoted to full user actions in the&amp;nbsp;userAction&amp;nbsp;table.&lt;/P&gt;&lt;P&gt;The&amp;nbsp;userAction&amp;nbsp;table only contains actions that triggered measurable network/rendering activity (Load, XHR, Custom actions). Route changes displayed in the timeline are visual markers — not queryable via USQL unless they generated actual XHR calls.&lt;/P&gt;&lt;P&gt;Try this to get closer:&lt;/P&gt;&lt;P&gt;SELECT count(*), type&lt;BR /&gt;FROM userAction&lt;BR /&gt;WHERE application = "xxxxxx"&lt;BR /&gt;AND usersession.internalUserId = "xxxxxxxx"&lt;BR /&gt;AND name LIKE "%/en/home%"&lt;BR /&gt;GROUP BY type&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Also check if missing actions were captured as XHR type with auto-generated names rather than the page URL.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sujit&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 May 2026 11:15:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Why-Are-Page-change-Events-Not-Returned-in-userAction-Queries/m-p/299903#M7403</guid>
      <dc:creator>sujit_k_singh</dc:creator>
      <dc:date>2026-05-25T11:15:25Z</dc:date>
    </item>
  </channel>
</rss>

