<?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: DQL - How do I enable the ability to have the record open in 'Hosts'? in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/287983#M2685</link>
    <description>&lt;P&gt;From memory, for "Open With" to work with a problem ID you also need to include the event.type or event.kind (something that tells DT what the ID is) in the record. So using the example you posted above it would end up something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch dt.davis.problems
|fields event.id, event.type&lt;/LI-CODE&gt;&lt;P&gt;I think it was one of those 2 fields. Hope that helps!&lt;/P&gt;</description>
    <pubDate>Wed, 15 Oct 2025 22:13:48 GMT</pubDate>
    <dc:creator>Fin_Ubels</dc:creator>
    <dc:date>2025-10-15T22:13:48Z</dc:date>
    <item>
      <title>DQL - How do I enable the ability to have the record open in 'Hosts'?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277160#M2074</link>
      <description>&lt;P&gt;Hi, I have made a DQL query containing disk metrics. Under the 'Host Name' column, if I navigate to either 'Open Record With' or 'Open Value with', nothing shows up. What I intend to have, is it will open up in 'Hosts' or 'Infrastructure &amp;amp; Operations'. Any ideas?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 09:27:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277160#M2074</guid>
      <dc:creator>badgerfifteen</dc:creator>
      <dc:date>2025-05-14T09:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: DQL - How do I enable the ability to have the record open in 'Hosts'?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277167#M2075</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/67521"&gt;@badgerfifteen&lt;/a&gt;&amp;nbsp;If "dt.entity.host" is the field that you are using for Host Name you should be able to have the&amp;nbsp;&lt;SPAN&gt;'Open Record With' option enable .&amp;nbsp; Here is an example query that works for me&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;timeseries avg(dt.host.disk.used.percent), by: { dt.entity.disk, dt.entity.host } 
| fieldsAdd Host = entityName(dt.entity.host), Disk = entityName(dt.entity.disk),
 Usage = arrayLast(`avg(dt.host.disk.used.percent)`)
| sort Usage desc
| limit 10&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 10:49:15 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277167#M2075</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-05-14T10:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: DQL - How do I enable the ability to have the record open in 'Hosts'?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277181#M2076</link>
      <description>&lt;P&gt;Interestingly, I have had a look at my code and this code here removes the ability to have the value open in 'Hosts'. If I comment it out, it works as expected.&amp;nbsp;&lt;/P&gt;&lt;P&gt;| fields Host, `Disk Name`, Utilisation, `Department`, Application&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 11:49:17 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277181#M2076</guid>
      <dc:creator>badgerfifteen</dc:creator>
      <dc:date>2025-05-14T11:49:17Z</dc:date>
    </item>
    <item>
      <title>Re: DQL - How do I enable the ability to have the record open in 'Hosts'?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277630#M2114</link>
      <description>&lt;P&gt;You have to have a field in the output that has the entity id. Add it at the end of your list of fields and 'Open With' will then work.&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 20:24:54 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277630#M2114</guid>
      <dc:creator>TomLichti</dc:creator>
      <dc:date>2025-05-20T20:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: DQL - How do I enable the ability to have the record open in 'Hosts'?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277641#M2116</link>
      <description>&lt;P&gt;Adding on to this, you need to have that ID, but you can also hide the ID using the visualisation options but still retain the "Open With" features allowing you to create clean and functional dashboards/reports.&lt;/P&gt;&lt;P&gt;Showing ID is specified in the query but hidden using options on the right:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fin_Ubels_0-1747802060071.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28102i4AF4129DC58B148D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Fin_Ubels_0-1747802060071.png" alt="Fin_Ubels_0-1747802060071.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Showing "Open With" still working:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Fin_Ubels_1-1747802096143.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/28103i48BDB582C89186E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Fin_Ubels_1-1747802096143.png" alt="Fin_Ubels_1-1747802096143.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 04:35:56 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/277641#M2116</guid>
      <dc:creator>Fin_Ubels</dc:creator>
      <dc:date>2025-05-21T04:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: DQL - How do I enable the ability to have the record open in 'Hosts'?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/287922#M2681</link>
      <description>&lt;P&gt;I 'm finding that that usually works, but not always. For example:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;fetch dt.davis.problems&lt;/LI-CODE&gt;&lt;P&gt;By default, you get a bunch of options on any field and then&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Open with&lt;/STRONG&gt;.&lt;/EM&gt; You also get app suggestions through&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;Open value with&lt;/STRONG&gt;&lt;/EM&gt; on field&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;event.id&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;field&lt;EM&gt;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;All as expected, but if you do&lt;/P&gt;&lt;LI-CODE lang="python"&gt;fetch dt.davis.problems
|fields event.id&lt;/LI-CODE&gt;&lt;P&gt;Neither &lt;EM&gt;&lt;STRONG&gt;O&lt;/STRONG&gt;&lt;/EM&gt;&lt;STRONG&gt;pen value with&lt;/STRONG&gt; or&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Open with&lt;/STRONG&gt;&lt;/EM&gt; provide any options.&lt;/P&gt;&lt;P&gt;Agree, some visualizations allow you to select which fields are visible or used in the legend, however, often I want to do something more with the data, such as joining it to other table and then do &lt;EM&gt;&lt;STRONG&gt;summarize&lt;/STRONG&gt;&lt;/EM&gt;.&amp;nbsp; Even if you do &lt;EM&gt;&lt;STRONG&gt;summarize ..., by :{event.id}&lt;/STRONG&gt;&lt;/EM&gt;, that event.id is no longer openable.&lt;BR /&gt;&lt;BR /&gt;or also there is no &lt;EM&gt;&lt;STRONG&gt;Open with&lt;/STRONG&gt;&lt;/EM&gt; on a copy of the field, for example:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;fetch dt.davis.problems
|fieldsAdd event.id.copy = event.id&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So it seems to be depending on more than just the value or string representation of a field.&lt;/P&gt;&lt;P&gt;Any suggestions ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 08:23:50 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/287922#M2681</guid>
      <dc:creator>Immanuel_G</dc:creator>
      <dc:date>2025-10-15T08:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: DQL - How do I enable the ability to have the record open in 'Hosts'?</title>
      <link>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/287983#M2685</link>
      <description>&lt;P&gt;From memory, for "Open With" to work with a problem ID you also need to include the event.type or event.kind (something that tells DT what the ID is) in the record. So using the example you posted above it would end up something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch dt.davis.problems
|fields event.id, event.type&lt;/LI-CODE&gt;&lt;P&gt;I think it was one of those 2 fields. Hope that helps!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Oct 2025 22:13:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/DQL-How-do-I-enable-the-ability-to-have-the-record-open-in-Hosts/m-p/287983#M2685</guid>
      <dc:creator>Fin_Ubels</dc:creator>
      <dc:date>2025-10-15T22:13:48Z</dc:date>
    </item>
  </channel>
</rss>

