<?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: How to find only frustrated user action names of every user through USQL? in Real User Monitoring</title>
    <link>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113326#M2940</link>
    <description>&lt;P&gt;userExperienceScore is session level, it takes into account all of the actions in the session so you can end up including the user actions that have the (action level) apdex category of tolerating or satisfied as long as the session itself is classified as having a frustrated (session level) userExperienceScore.&lt;/P&gt;&lt;P&gt;If you only want frustrated actions you need to pull from the useraction table (not the usersession table) and you will filter to apdexCategory (not usersession.userExperienceScore).&lt;/P&gt;&lt;P&gt;That's what my example posted earlier does.&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://www.dynatrace.com/support/help/how-to-use-dynatrace/real-user-monitoring/basic-concepts/ratings/user-experience-score/" target="_blank"&gt;User experience score (session level)&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://www.dynatrace.com/support/help/how-to-use-dynatrace/real-user-monitoring/basic-concepts/ratings/apdex-ratings/" target="_blank"&gt;Apdex (action level)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 05 Jun 2020 15:18:42 GMT</pubDate>
    <dc:creator>JamesKitson</dc:creator>
    <dc:date>2020-06-05T15:18:42Z</dc:date>
    <item>
      <title>How to find only frustrated user action names of every user through USQL?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113322#M2936</link>
      <description>&lt;P&gt;How to find only frustrated user action names of every user through USQL?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 11:45:11 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113322#M2936</guid>
      <dc:creator>sumit_patil</dc:creator>
      <dc:date>2022-09-30T11:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to find only frustrated user action names of every user through USQL?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113323#M2937</link>
      <description>&lt;P&gt;Something like:&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;This shows you the name of the top occurrences of user actions where they were marked as frustrated.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 18:20:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113323#M2937</guid>
      <dc:creator>JamesKitson</dc:creator>
      <dc:date>2020-06-04T18:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to find only frustrated user action names of every user through USQL?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113324#M2938</link>
      <description>&lt;P&gt;MY approach is to find "worst" usersession in order to take analysis from "holistic" point of view.&lt;/P&gt;&lt;P&gt;You can built a table using usql to have the "big picture". Base on that add to your dashboard deep dashlet base on usql.&lt;/P&gt;&lt;P&gt;SELECT totalErrorCount, userExperienceScore, * FROM usersession WHERE useraction.application="Your_Application" and userExperienceScore="FRUSTRATED" order by totalErrorCount desc&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.dynatrace.com/legacyfs/online/25261-1591299694351.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jun 2020 19:41:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113324#M2938</guid>
      <dc:creator>Domenico_Bressi</dc:creator>
      <dc:date>2020-06-04T19:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to find only frustrated user action names of every user through USQL?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113325#M2939</link>
      <description>&lt;P&gt;Thanks for replies.&lt;/P&gt;&lt;P&gt;I have created below query from which am able to pull out all the frustrated users user action. But am not able to pull out only frustrated user actions from those. Is there any solution on below query.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Query :&lt;/P&gt;&lt;P&gt;SELECT userId, userExperienceScore, useraction.name, useraction.apdexCategory FROM usersession WHERE userExperienceScore IS"FRUSTRATED" AND useraction.serverTime &amp;gt; 12000&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 06:06:57 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113325#M2939</guid>
      <dc:creator>sumit_patil</dc:creator>
      <dc:date>2020-06-05T06:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to find only frustrated user action names of every user through USQL?</title>
      <link>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113326#M2940</link>
      <description>&lt;P&gt;userExperienceScore is session level, it takes into account all of the actions in the session so you can end up including the user actions that have the (action level) apdex category of tolerating or satisfied as long as the session itself is classified as having a frustrated (session level) userExperienceScore.&lt;/P&gt;&lt;P&gt;If you only want frustrated actions you need to pull from the useraction table (not the usersession table) and you will filter to apdexCategory (not usersession.userExperienceScore).&lt;/P&gt;&lt;P&gt;That's what my example posted earlier does.&lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://www.dynatrace.com/support/help/how-to-use-dynatrace/real-user-monitoring/basic-concepts/ratings/user-experience-score/" target="_blank"&gt;User experience score (session level)&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A rel="noopener noreferrer" href="https://www.dynatrace.com/support/help/how-to-use-dynatrace/real-user-monitoring/basic-concepts/ratings/apdex-ratings/" target="_blank"&gt;Apdex (action level)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jun 2020 15:18:42 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Real-User-Monitoring/How-to-find-only-frustrated-user-action-names-of-every-user/m-p/113326#M2940</guid>
      <dc:creator>JamesKitson</dc:creator>
      <dc:date>2020-06-05T15:18:42Z</dc:date>
    </item>
  </channel>
</rss>

