<?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 count clarification in Open Q&amp;A</title>
    <link>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110038#M6937</link>
    <description>&lt;P&gt;AFAIK, FUNNEL counting is like adding more and more actions that are reached in session for each FUNNEL step. So you should use AND instead of OR in your select to reach similar results as FUNNEL.&lt;/P&gt;</description>
    <pubDate>Thu, 12 Mar 2020 10:27:14 GMT</pubDate>
    <dc:creator>rastislav_danis</dc:creator>
    <dc:date>2020-03-12T10:27:14Z</dc:date>
    <item>
      <title>USQL FUNNEL count clarification</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110037#M6936</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could anyone from Dynatrace explain how does the USQL Funnel derive the count ? I am experimenting this new USQL FUNNEL function and was trying to match the count but doesn't seem to be tally,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;For example, I have 3 user actions ! = /index/login, = !/index/landing and LIKE "!/index/*/create"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;here's the USQL statement:&lt;/P&gt;&lt;P&gt;Use COUNT &lt;/P&gt;&lt;P&gt;SELECT useraction.name, COUNT(DISTINCT(usersession.userId)) AS number FROM useraction where useraction.name = "!/index/login" OR useraction.name = '!/index/landing' OR useraction.name LIKE "!/index/*/create" AND errorCount = 0 GROUP BY useraction.name LIMIT 5000&lt;/P&gt;&lt;P&gt;Use FUNNEL:&lt;/P&gt;&lt;P&gt;SELECT FUNNEL(useraction.name = "!/index/login" AS "Login page",useraction.name = '!/index/landing' AS "Landing page",useraction.name LIKE "!/index/*/create") FROM usersession&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;But the count between COUNT and FUNNEL differ by alot... anyone helpful to share some lights on the difference ? FUNNEL function count is very low and even though I am able to find those user actions via UserSession dashboard but FUNNEL didn't account for it.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 03:05:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110037#M6936</guid>
      <dc:creator>chuan_sern_wong</dc:creator>
      <dc:date>2020-03-12T03:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: USQL FUNNEL count clarification</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110038#M6937</link>
      <description>&lt;P&gt;AFAIK, FUNNEL counting is like adding more and more actions that are reached in session for each FUNNEL step. So you should use AND instead of OR in your select to reach similar results as FUNNEL.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 10:27:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110038#M6937</guid>
      <dc:creator>rastislav_danis</dc:creator>
      <dc:date>2020-03-12T10:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: USQL FUNNEL count clarification</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110039#M6938</link>
      <description>&lt;P&gt;OK, thanks for the clarification.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 10:41:33 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110039#M6938</guid>
      <dc:creator>chuan_sern_wong</dc:creator>
      <dc:date>2020-03-12T10:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: USQL FUNNEL count clarification</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110040#M6939</link>
      <description>&lt;P&gt;Actually it honours the order of those user actions, so even with AND you probably won't have the very same results.&lt;BR /&gt;&lt;BR /&gt;For funnel like:&lt;BR /&gt;Action1,Action 2,Action 3&lt;BR /&gt;&lt;BR /&gt;If a session has only Action 2 and Action 3 it won't be included in the Funnel as it is mission Action 1.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 12:25:30 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/110040#M6939</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2020-03-12T12:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: USQL FUNNEL count clarification</title>
      <link>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/194031#M22475</link>
      <description>&lt;P&gt;I have the same need,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you get Any Chance to resolve it.&lt;/P&gt;&lt;P&gt;If yes, how should be the USQL.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2022 09:58:41 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Open-Q-A/USQL-FUNNEL-count-clarification/m-p/194031#M22475</guid>
      <dc:creator>Malaik</dc:creator>
      <dc:date>2022-09-07T09:58:41Z</dc:date>
    </item>
  </channel>
</rss>

