<?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 fetch name of the dashboard using id with DQL? in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287601#M2665</link>
    <description>&lt;P&gt;Agreed. But you can use Code tile instead - run the DQL and accessing a Dynatrace Platform Document API to fetch the name. Dashboards are not stored in DQL afaik.&lt;/P&gt;</description>
    <pubDate>Fri, 10 Oct 2025 06:46:17 GMT</pubDate>
    <dc:creator>Julius_Loman</dc:creator>
    <dc:date>2025-10-10T06:46:17Z</dc:date>
    <item>
      <title>Fetch Dashboard Name by ID Using DQL Queries</title>
      <link>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287594#M2661</link>
      <description>&lt;P&gt;I am attempting to obtain the amount of data scanned by DQLs at dashboard level. Could someone assist me in obtaining the dashboard name as a dimension, in addition to the dashboard ID? I have attached the DQL.&lt;/P&gt;
&lt;P&gt;Basically, how to get dashboard name using id? Appreciate your help, thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;fetch dt.system.events
| filter event.kind == "BILLING_USAGE_EVENT"
| filter event.type == "Log Management &amp;amp; Analytics - Query"
| filter client.application_context == "dynatrace.dashboards"
| parse client.source, "DATA 'ui/dashboard/' STRING:dashboard.id"
| dedup event.id
| summarize {
   data_read_bytes = toDouble(sum(billed_bytes)),
   Query_count = count()
  }, by: {
    dashboard.id
    // , name?
  }
| sort data_read_bytes desc&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 17 Dec 2025 13:04:18 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287594#M2661</guid>
      <dc:creator>chandu</dc:creator>
      <dc:date>2025-12-17T13:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch name of the dashboard using id with DQL?</title>
      <link>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287595#M2662</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/80708"&gt;@chandu&lt;/a&gt;&amp;nbsp;I think your best option here would be to use a lookup table that has the dashaboard.id and dashboard name mapping and use it as part of the query. Not sure dashboard name is actually available as a field via DQL&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.dynatrace.com/docs/shortlink/grail-lookup-data" target="_blank"&gt;https://docs.dynatrace.com/docs/shortlink/grail-lookup-data&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=2QsrWOhFDsc" target="_blank"&gt;https://www.youtube.com/watch?v=2QsrWOhFDsc&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 22:08:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287595#M2662</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-10-09T22:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch name of the dashboard using id with DQL?</title>
      <link>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287596#M2663</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21657"&gt;@p_devulapalli&lt;/a&gt;&amp;nbsp;Thank you. Yes, lookup is the choice if we want to join data from source query with a subquery. But the question is does Dynatrace expose mapping between dashboard name and id via any of the system tables.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 22:15:29 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287596#M2663</guid>
      <dc:creator>chandu</dc:creator>
      <dc:date>2025-10-09T22:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch name of the dashboard using id with DQL?</title>
      <link>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287597#M2664</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/80708"&gt;@chandu&lt;/a&gt;&amp;nbsp;I am bit doubtful if dashboard name is stored in any of the system tables, will leave this open for anyone to comment on further&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Oct 2025 22:58:27 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287597#M2664</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-10-09T22:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to fetch name of the dashboard using id with DQL?</title>
      <link>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287601#M2665</link>
      <description>&lt;P&gt;Agreed. But you can use Code tile instead - run the DQL and accessing a Dynatrace Platform Document API to fetch the name. Dashboards are not stored in DQL afaik.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Oct 2025 06:46:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Fetch-Dashboard-Name-by-ID-Using-DQL-Queries/m-p/287601#M2665</guid>
      <dc:creator>Julius_Loman</dc:creator>
      <dc:date>2025-10-10T06:46:17Z</dc:date>
    </item>
  </channel>
</rss>

