<?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: Executive dashboard - Without conversion goals in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226431#M3364</link>
    <description>&lt;P&gt;Wow great! Good to know &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Oct 2023 12:36:08 GMT</pubDate>
    <dc:creator>radek_jasinski</dc:creator>
    <dc:date>2023-10-24T12:36:08Z</dc:date>
    <item>
      <title>Executive dashboard - Without conversion goals</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226169#M3352</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm testing with&amp;nbsp;&lt;A href="https://github.com/dynatrace-perfclinics/community-tips-tricks/blob/main/ep19/ReadMeExecutiveOverview.md" target="_blank"&gt;community-tips-tricks/ep19/ReadMeExecutiveOverview.md at main · dynatrace-perfclinics/community-tips-tricks · GitHub&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have removed the conversion goals at the top of dashboards because we didn't configured it for all applications (specially for SAP applic it's not usefull).&lt;/P&gt;&lt;P&gt;But now the dashboard gives me empty values even after updating the query. When I check the code I just want as a test add specific application to the view but can't find the way to do this.&lt;/P&gt;&lt;P&gt;I have tried with:&lt;/P&gt;&lt;P&gt;appsList = "\ My Applic \";&lt;/P&gt;&lt;P&gt;Is there a specific config to add value to a variable in the code?&lt;/P&gt;&lt;P&gt;thx!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 06:56:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226169#M3352</guid>
      <dc:creator>Soren_vdc</dc:creator>
      <dc:date>2023-10-23T06:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Executive dashboard - Without conversion goals</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226173#M3353</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;As far as I can see this dashboard requires you to enter a Conversion Goal. I've also looked in the JSON and I don't know if it wouldn't be simpler to build a new one based on it rather than reworking the current one, as this parameter (Conv Goal) is included in each tile.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/dynatrace-perfclinics/community-tips-tricks/blob/main/ep19/ReadMeExecutiveOverview.md#prerequisites" target="_blank"&gt;https://github.com/dynatrace-perfclinics/community-tips-tricks/blob/main/ep19/ReadMeExecutiveOverview.md#prerequisites&lt;/A&gt;&lt;/P&gt;&lt;P&gt;R.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 07:13:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226173#M3353</guid>
      <dc:creator>radek_jasinski</dc:creator>
      <dc:date>2023-10-23T07:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Executive dashboard - Without conversion goals</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226181#M3354</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the answer. Indeed, I'm busy with checking the setup of the dashboard but still not sure why&amp;nbsp; this code is not working.&lt;/P&gt;&lt;P&gt;For example for&amp;nbsp; tile:&lt;/P&gt;&lt;P&gt;import { rumUserSessionsClient } from '@dynatrace-sdk/client-classic-environment-v1';&lt;BR /&gt;export default async function () {&lt;BR /&gt;const startTime = Date.parse($dt_timeframe_from).toString(); // Get Dashboard Start Time&lt;BR /&gt;const endTime = Date.parse($dt_timeframe_to).toString(); // Get Dashboard End Time&lt;BR /&gt;const startShiftTime = startTime-(86400000*$TimeShift); // Get TimeShift variable, convert to days and create startShift&lt;BR /&gt;const endShiftTime = endTime-(86400000*$TimeShift); // Get TimeShift variable, convert to days and create endShift&lt;BR /&gt;var appsList = "\""+$AppName[0]+"\"";&lt;BR /&gt;let i = 1;&lt;BR /&gt;// Build Apps List&lt;BR /&gt;while (i &amp;lt; 10) {&lt;BR /&gt;if ($AppName[i]==null) break;&lt;BR /&gt;appsList = appsList+",\""+$AppName[i]+"\"";&lt;BR /&gt;i++;&lt;BR /&gt;}&lt;BR /&gt;appsList = "\""+B2C Mobile Production+"\"";&lt;BR /&gt;// Create the USQL query string using the values above&lt;BR /&gt;const query = 'SELECT CONDITION (count(*),WHERE starttime&amp;gt;='+startTime+' and endtime&amp;lt;='+endTime+'), CONDITION (count(*),WHERE starttime&amp;gt;='+startShiftTime+' and endtime&amp;lt;='+endShiftTime+') from usersession where useraction.application in ('+appsList+')';&lt;BR /&gt;// Fire off the USQL query and get the results&lt;BR /&gt;const result = await rumUserSessionsClient.getUsqlResultAsTable({query: query, startTimestamp: startShiftTime, endTimestamp: endTime});&lt;BR /&gt;var str1 = (result["values"][0][0]-result["values"][0][1]);&lt;BR /&gt;if ((result["values"][0][0])&amp;gt;(result["values"][0][1]))&lt;BR /&gt;return result["values"][0][0]+" ("+(str1)+" &lt;span class="lia-unicode-emoji" title=":up_right_arrow:"&gt;↗️&lt;/span&gt;🟢)";&lt;BR /&gt;else if ((result["values"][0][0])&amp;lt;(result["values"][0][1]))&lt;BR /&gt;return result["values"][0][0]+" ("+(str1)*(-1)+" &lt;span class="lia-unicode-emoji" title=":down_right_arrow:"&gt;↘️&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":red_circle:"&gt;🔴&lt;/span&gt;)";&lt;BR /&gt;else&lt;BR /&gt;return result["values"][0][0]+" ("+(str1)+" =🟡)";&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;I want to test with hard-coded one applic so I put appList to&lt;/P&gt;&lt;P&gt;appsList = "\""my applic"\"";&lt;/P&gt;&lt;P&gt;but error. The interface gives error but no more info about the error or what it's expected.&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 07:38:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226181#M3354</guid>
      <dc:creator>Soren_vdc</dc:creator>
      <dc:date>2023-10-23T07:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Executive dashboard - Without conversion goals</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226365#M3362</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm a step futher, but still have issue to map the variable in the query string:&lt;/P&gt;&lt;P&gt;var appsList = "\""My Application"\"";&lt;BR /&gt;// Create the USQL query string using the values above&lt;BR /&gt;const query = 'SELECT CONDITION (count(*),WHERE starttime&amp;gt;='+startTime+' and endtime&amp;lt;='+endTime+'), CONDITION (count(*),WHERE starttime&amp;gt;='+startShiftTime+' and endtime&amp;lt;='+endShiftTime+') from usersession where useraction.application = ('+appsList+')';&lt;/P&gt;&lt;P&gt;This is not working. Any Idea? There is also no information about the error in the UI. Can I find some more details about the error ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;thx!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 08:07:10 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226365#M3362</guid>
      <dc:creator>Soren_vdc</dc:creator>
      <dc:date>2023-10-24T08:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Executive dashboard - Without conversion goals</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226430#M3363</link>
      <description>&lt;P&gt;I have found the solution:&lt;/P&gt;&lt;P&gt;var app = $AppName&lt;BR /&gt;// Create the USQL query string using the values above&lt;BR /&gt;const query = 'SELECT CONDITION (count(*),WHERE starttime&amp;gt;='+startTime+' and endtime&amp;lt;='+endTime+'), CONDITION (count(*),WHERE starttime&amp;gt;='+startShiftTime+' and endtime&amp;lt;='+endShiftTime+') from usersession where useraction.application="'+app+'" ';&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 12:23:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226430#M3363</guid>
      <dc:creator>Soren_vdc</dc:creator>
      <dc:date>2023-10-24T12:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Executive dashboard - Without conversion goals</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226431#M3364</link>
      <description>&lt;P&gt;Wow great! Good to know &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2023 12:36:08 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Executive-dashboard-Without-conversion-goals/m-p/226431#M3364</guid>
      <dc:creator>radek_jasinski</dc:creator>
      <dc:date>2023-10-24T12:36:08Z</dc:date>
    </item>
  </channel>
</rss>

