<?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 Is it possible to export a single User Session with User Actions as a Json File? in Real User Monitoring</title>
    <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120962#M2104</link>
    <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;i would like to export a distinct user session as a Json File to see whether all necessary user actions are included or not.&lt;/P&gt;&lt;P&gt;Is there a way to do this easily?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 16 Jul 2019 12:56:14 GMT</pubDate>
    <dc:creator>peter_huber</dc:creator>
    <dc:date>2019-07-16T12:56:14Z</dc:date>
    <item>
      <title>Is it possible to export a single User Session with User Actions as a Json File?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120962#M2104</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;i would like to export a distinct user session as a Json File to see whether all necessary user actions are included or not.&lt;/P&gt;&lt;P&gt;Is there a way to do this easily?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2019 12:56:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120962#M2104</guid>
      <dc:creator>peter_huber</dc:creator>
      <dc:date>2019-07-16T12:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export a single User Session with User Actions as a Json File?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120963#M2105</link>
      <description>&lt;P&gt;Hello Peter,&lt;/P&gt;&lt;P&gt;I know that we can feed all user sessions to an HTTP endpoint as JSON but I don't think it is possible to export a single user session as JSON. If you go to the User Session section in the UI, the details are very in depth so you should be able to determine if a user or a specific session has the correct number of user actions there. Another option is to use the User Session Query to pull the user sessions for a certain application that have a certain number of user actions or above (&amp;gt;=).&lt;/P&gt;&lt;P&gt;Check out the user session query here: &lt;A href="https://www.dynatrace.com/support/help/how-to-use-dynatrace/real-user-monitoring/how-to-use-real-user-monitoring/cross-application-user-session-analytics/custom-queries-segmentation-and-aggregation-of-session-data/"&gt;https://www.dynatrace.com/support/help/how-to-use-dynatrace/real-user-monitoring/how-to-use-real-user-monitoring/cross-application-user-session-analytics/custom-queries-segmentation-and-aggregation-of-session-data/&lt;/A&gt; &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;David Nicholls&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Jul 2019 15:37:44 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120963#M2105</guid>
      <dc:creator>david_n</dc:creator>
      <dc:date>2019-07-16T15:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export a single User Session with User Actions as a Json File?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120964#M2106</link>
      <description>&lt;P&gt;Yes there is a way, use USQL (either via api or GUI - in User Sessions page):&lt;/P&gt;&lt;P&gt;SELECT useraction.name, JSON FROM usersession WHERE userSessionId IN ("session_id")&lt;/P&gt;&lt;P&gt;Where session_id is id of your session.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Jul 2019 10:29:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120964#M2106</guid>
      <dc:creator>rastislav_danis</dc:creator>
      <dc:date>2019-07-17T10:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export a single User Session with User Actions as a Json File?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120965#M2107</link>
      <description>&lt;DIV class="fr-view clearfix"&gt;&lt;P&gt;You can get session_id value from url - it's last numeric string behing "x" sign. &lt;/P&gt;&lt;P&gt;F.e. if url contains "sessionId=1563360038168x1563360083537x192889524", then session_id should be "192889524".&lt;/P&gt;&lt;P&gt;Or you can check session_id by USQL when you know other parameters like session start time and user id.&lt;/P&gt;&lt;BR /&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 17 Jul 2019 10:57:44 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/Is-it-possible-to-export-a-single-User-Session-with-User-Actions/m-p/120965#M2107</guid>
      <dc:creator>rastislav_danis</dc:creator>
      <dc:date>2019-07-17T10:57:44Z</dc:date>
    </item>
  </channel>
</rss>

