<?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- Frustrated user actions , their count by app in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180966#M2198</link>
    <description>&lt;P&gt;You can use your initial query you just need to add a filter for the app like this:&lt;/P&gt;
&lt;P&gt;select name, count(name) from useraction where apdexCategory IS "FRUSTRATED" and application = "My App" group by name order by count(name)&lt;/P&gt;</description>
    <pubDate>Fri, 18 Feb 2022 10:44:18 GMT</pubDate>
    <dc:creator>christian_gusta</dc:creator>
    <dc:date>2022-02-18T10:44:18Z</dc:date>
    <item>
      <title>USQL- Frustrated user actions , their count by app</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/163315#M1807</link>
      <description>&lt;P&gt;I have created a dashboard which allows me to see end user experience and how many users are satisfied &amp;amp; how many had frustrated actions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am looking for a way to list in table format, if possible, all user actions, the count of frustrated which had frustrated experience&lt;/P&gt;
&lt;P&gt;I tried using this usql but it is showing ALL the apps. I want to restrict it to "My_App" only and show me the count as well&lt;/P&gt;
&lt;P&gt;select name, count(name) from useraction where apdexCategory IS "FRUSTRATED" group by name order by count(name)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;USER_ACTION_Name&amp;nbsp; ,&amp;nbsp; COUNT_of_Frustrated&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Mar 2021 07:31:12 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/163315#M1807</guid>
      <dc:creator>shahrukh_niazi</dc:creator>
      <dc:date>2021-03-30T07:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: USQL- Frustrated user actions , their count by app</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/163330#M1808</link>
      <description>&lt;P&gt;So if you want a single value of all the frustrated users you can use the following string:&amp;nbsp;&lt;/P&gt;&lt;P&gt;SELECT COUNT(useraction.name) FROM usersession WHERE useraction.application="My_App" AND userExperienceScore IS "FRUSTRATED"&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or you can use this, which give you a table view including the action name and the count of the frustrated users on that given applications as defined:&amp;nbsp;SELECT useraction.name, COUNT(userExperienceScore) FROM usersession WHERE useraction.application ="My_App" AND userExperienceScore="FRUSTRATED" GROUP BY useraction.name&lt;/P&gt;</description>
      <pubDate>Wed, 24 Mar 2021 13:00:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/163330#M1808</guid>
      <dc:creator>ChadTurner</dc:creator>
      <dc:date>2021-03-24T13:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: USQL- Frustrated user actions , their count by app</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/163563#M1809</link>
      <description>&lt;P&gt;While the query Chad gave you correctly adds the Application filter, it is querying the User Session's Apdex (or User Experience Score).&lt;BR /&gt;&lt;BR /&gt;You can use this query to pull Apdex instead, displaying the user action name, the amount of times it was FRUSTRATED for Apdex, only pulling data for FRUSTRATED visits (Frustrated User Experience Score):&amp;nbsp;&lt;BR /&gt;SELECT useraction.name, COUNT(*) FROM usersession &lt;SPAN&gt;WHERE useraction.application ="My_App" AND&amp;nbsp;&lt;/SPAN&gt;useraction.apdexCategory="FRUSTRATED" AND userExperienceScore="FRUSTRATED" GROUP BY useraction.name&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 16:05:38 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/163563#M1809</guid>
      <dc:creator>trevor_masseng1</dc:creator>
      <dc:date>2021-03-29T16:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: USQL- Frustrated user actions , their count by app</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180408#M2184</link>
      <description>&lt;P&gt;Whether its count of frustrated user actions or Top user actions, should we get it from usersession table or useraction table? I see counts differ for these. Not sure if this is our company instance, but when i use the user session table the where clause doesn't work and gets all the application whereas if i use the useraction table, my results are limited to the application name.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Feb 2022 17:31:06 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180408#M2184</guid>
      <dc:creator>ABB</dc:creator>
      <dc:date>2022-02-08T17:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: USQL- Frustrated user actions , their count by app</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180886#M2195</link>
      <description>&lt;P&gt;&lt;SPAN&gt;You can only do it for key user actions.&lt;BR /&gt;&lt;BR /&gt;It would be beneficial if you also use parents to add another column/split by application. Otherwise, you might end up with the same user action name multiple times but you don't know to which app it belongs.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;You can plot the&amp;nbsp;&lt;STRONG data-stringify-type="bold"&gt;apdex score user action per application in a table.&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AgataWlodarczyk_0-1645096535054.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/4424i66F7D72EEC9D1893/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AgataWlodarczyk_0-1645096535054.png" alt="AgataWlodarczyk_0-1645096535054.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;but that does not give you the count for each category. &lt;BR /&gt;&lt;BR /&gt;This can only be achieved in usql.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Feb 2022 11:17:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180886#M2195</guid>
      <dc:creator>AgataWlodarczyk</dc:creator>
      <dc:date>2022-02-17T11:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: USQL- Frustrated user actions , their count by app</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180932#M2197</link>
      <description>&lt;P&gt;Thank you! I also got a response on my other posting that explains the difference between UserSessions Vs UserActions. I used this guidance for Top User Actions and now I am not getting user actions with multiple same names.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.dynatrace.com/t5/Dashboarding/Top-User-Actions-UserSession-table-or-UserAction-table/m-p/180416#M2185" target="_blank"&gt;https://community.dynatrace.com/t5/Dashboarding/Top-User-Actions-UserSession-table-or-UserAction-table/m-p/180416#M2185&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, for identifying frustrated user actions through a USQL, if we use &lt;SPAN&gt;useraction.apdexCategory="FRUSTRATED", it is also showing non key user actions. Did you meant to say that custom metrics will only work for key user actions?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Feb 2022 18:07:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180932#M2197</guid>
      <dc:creator>ABB</dc:creator>
      <dc:date>2022-02-17T18:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: USQL- Frustrated user actions , their count by app</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180966#M2198</link>
      <description>&lt;P&gt;You can use your initial query you just need to add a filter for the app like this:&lt;/P&gt;
&lt;P&gt;select name, count(name) from useraction where apdexCategory IS "FRUSTRATED" and application = "My App" group by name order by count(name)&lt;/P&gt;</description>
      <pubDate>Fri, 18 Feb 2022 10:44:18 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/USQL-Frustrated-user-actions-their-count-by-app/m-p/180966#M2198</guid>
      <dc:creator>christian_gusta</dc:creator>
      <dc:date>2022-02-18T10:44:18Z</dc:date>
    </item>
  </channel>
</rss>

