<?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: USQL - Funnel by userId in Real User Monitoring</title>
    <link>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114209#M6609</link>
    <description>&lt;P&gt;You can filter down to a specific user tag in a funnel/usql but all of the funnel queries work at the session level so you can't span multiple sessions (over several days for example) when populating a funnel.&lt;/P&gt;</description>
    <pubDate>Thu, 25 Jun 2020 14:17:35 GMT</pubDate>
    <dc:creator>JamesKitson</dc:creator>
    <dc:date>2020-06-25T14:17:35Z</dc:date>
    <item>
      <title>USQL - Funnel by userId</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114207#M6607</link>
      <description>&lt;P&gt;as I understand correctly, the funnel function is based on a user session&lt;/P&gt;&lt;P&gt;is it possible to build a funnel based on unique users?&lt;/P&gt;&lt;P&gt;for example, when a user starts a process, but within one session does not end it. And then, for example, tomorrow he will start filling out the process again.&lt;/P&gt;&lt;P&gt;We need Funnul based uniq user not usersession &lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 11:46:58 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114207#M6607</guid>
      <dc:creator>MAkimov</dc:creator>
      <dc:date>2020-06-25T11:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: USQL - Funnel by userId</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114208#M6608</link>
      <description>&lt;P&gt;While I have not tried this, its worth a shot. Did you try and were you unable to make a funnel chart based off of a single user?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 12:00:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114208#M6608</guid>
      <dc:creator>ChadTurner</dc:creator>
      <dc:date>2020-06-25T12:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: USQL - Funnel by userId</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114209#M6609</link>
      <description>&lt;P&gt;You can filter down to a specific user tag in a funnel/usql but all of the funnel queries work at the session level so you can't span multiple sessions (over several days for example) when populating a funnel.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2020 14:17:35 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114209#M6609</guid>
      <dc:creator>JamesKitson</dc:creator>
      <dc:date>2020-06-25T14:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: USQL - Funnel by userId</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114210#M6610</link>
      <description>&lt;P&gt;Hi Mikhail.&lt;/P&gt;&lt;P&gt;Yes, you right, funnel based on sessions. but you can use Single value in USQL to see that values on your dashboard.&lt;/P&gt;&lt;P&gt;it will looks like this &lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.dynatrace.com/legacyfs/online/26211-1598277438286.png" /&gt;&lt;/P&gt;&lt;P&gt;where three tiles at the bottom will contain something like this:&lt;/P&gt;&lt;P&gt;1. SELECT COUNT(userid) as users FROM usersession WHERE useraction.name = "&lt;EM&gt;AppStart (easyTravel)&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;2. SELECT COUNT(userid) AS users FROM usersession WHERE useraction.name = "&lt;EM&gt;AppStart (easyTravel)&lt;/EM&gt;" and useraction.name = "&lt;EM&gt;searchJourney&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;3. SELECT COUNT(userid) AS users FROM usersession WHERE useraction.name = "&lt;EM&gt;AppStart (easyTravel)&lt;/EM&gt;" and useraction.name = "&lt;EM&gt;searchJourney&lt;/EM&gt;" AND useraction.name = "&lt;EM&gt;bookJourney&lt;/EM&gt;"&lt;/P&gt;&lt;P&gt;Probably you got to use &lt;STRONG&gt;COUNT(DISTINCT userid) &lt;/STRONG&gt;instead of &lt;STRONG&gt;COUNT(userid)&lt;/STRONG&gt; to exclude dublicates&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2020 14:03:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114210#M6610</guid>
      <dc:creator>dmitry-netrebin</dc:creator>
      <dc:date>2020-08-24T14:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: USQL - Funnel by userId</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114211#M6611</link>
      <description>&lt;P&gt;have a question&lt;/P&gt;&lt;P&gt;will this select show users who had the first action in one session and the second in another, or will it show users who had two actions in one session&lt;/P&gt;&lt;PRE&gt;SELECT COUNT(userid) AS users FROM usersession WHERE useraction.name = "AppStart (easyTravel)" and useraction.name = "searchJourney" &lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2020 16:32:32 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/USQL-Funnel-by-userId/m-p/114211#M6611</guid>
      <dc:creator>MAkimov</dc:creator>
      <dc:date>2020-08-24T16:32:32Z</dc:date>
    </item>
  </channel>
</rss>

