<?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: Problem Direct Link in DQL</title>
    <link>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285194#M2541</link>
    <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/64346"&gt;@MarwanC&lt;/a&gt;&amp;nbsp;You can try the below , it will take you directly to problem in new app from dashboard ProblemID&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| fields ProblemID = concat("[", display_id, "](", $tenant, "/ui/apps/dynatrace.davis.problems/problem/", event.id, ")"),&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Sep 2025 06:51:48 GMT</pubDate>
    <dc:creator>p_devulapalli</dc:creator>
    <dc:date>2025-09-02T06:51:48Z</dc:date>
    <item>
      <title>Problem Direct Link</title>
      <link>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285157#M2537</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following URL which when I click on it it takes me directly to the problem&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://{environmentid}.apps.dynatrace.com/ui/apps/dynatrace.davis.problems/problem/-849193811239885170_1756729427080V2" target="_blank"&gt;https://{environmentid}.apps.dynatrace.com/ui/apps/dynatrace.davis.problems/problem/-849193811239885170_1756729427080V2&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I need to find out given a problem ID which I already obtained using DQL, how can I obtain the stringID shown above&lt;/P&gt;&lt;P&gt;in order to concatenate to URL to send me direct to the problem in my Dashboard&lt;/P&gt;&lt;P&gt;I appreciate your support on this simple but internal GUI and not documented info&lt;/P&gt;&lt;P&gt;Marwan...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 12:49:36 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285157#M2537</guid>
      <dc:creator>MarwanC</dc:creator>
      <dc:date>2025-09-01T12:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Direct Link</title>
      <link>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285179#M2539</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to know "tenant_id" and "problem_id". I think you already know your tenant id.&lt;/P&gt;&lt;P&gt;"-849193811239885170_1756729427080V2" if problem_id in your URL.&lt;/P&gt;&lt;P&gt;Just be sure, problem_id is using that format, it means, it is not visual id as "P-XXXXXX".&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 16:13:33 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285179#M2539</guid>
      <dc:creator>AntonPineiro</dc:creator>
      <dc:date>2025-09-01T16:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Direct Link</title>
      <link>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285194#M2541</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/64346"&gt;@MarwanC&lt;/a&gt;&amp;nbsp;You can try the below , it will take you directly to problem in new app from dashboard ProblemID&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| fields ProblemID = concat("[", display_id, "](", $tenant, "/ui/apps/dynatrace.davis.problems/problem/", event.id, ")"),&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 06:51:48 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285194#M2541</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-09-02T06:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Direct Link</title>
      <link>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285202#M2543</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks p_devulapali&lt;/P&gt;&lt;P&gt;Indeed this does work, I share code fragment this if you want to the add the URL in your DQL&lt;/P&gt;&lt;P&gt;| fieldsAdd problem_url=concat("&lt;A href="https://{environmentid}.apps.dynatrace.com/ui/apps/dynatrace.davis.problems/problem/" target="_blank"&gt;https://{environmentid}.apps.dynatrace.com/ui/apps/dynatrace.davis.problems/problem/&lt;/A&gt;", event.id)&lt;BR /&gt;| fieldsAdd url=if(isNotNull(right.status),problem_url, else: "" )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, one minor hickup remains, in my table it all looks fine but I need the url so that it is clickable and once user click on it it them ut takes them direct to the problem, I am not sure if html is supported inside a table in the dashboard? will check&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 07:56:20 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285202#M2543</guid>
      <dc:creator>MarwanC</dc:creator>
      <dc:date>2025-09-02T07:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Direct Link</title>
      <link>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285205#M2544</link>
      <description>&lt;P&gt;For that you have to add the link with markdown syntax as in the example submitted by&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21657"&gt;@p_devulapalli&lt;/a&gt;&amp;nbsp;and then set the table column type as markdown&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GerardJ_0-1756800254026.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/29916iC2509E639C0A078E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GerardJ_0-1756800254026.png" alt="GerardJ_0-1756800254026.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 08:05:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285205#M2544</guid>
      <dc:creator>GerardJ</dc:creator>
      <dc:date>2025-09-02T08:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem Direct Link</title>
      <link>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285212#M2545</link>
      <description>&lt;P&gt;It worked like a charm Gerard thanks. it did not know tables can also have markup.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 09:42:34 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/DQL/Problem-Direct-Link/m-p/285212#M2545</guid>
      <dc:creator>MarwanC</dc:creator>
      <dc:date>2025-09-02T09:42:34Z</dc:date>
    </item>
  </channel>
</rss>

