<?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: Honeycomb Dashboard Clickable Tiles in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/Honeycomb-Dashboard-Clickable-Tiles/m-p/287501#M5445</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;Short answer is no,&amp;nbsp;&lt;/P&gt;&lt;P&gt;in the new Honeycomb visualization you can’t inject your own URL from DQL to make a tile directly clickable. Clicking a tile only opens the built-in action/drilldown menu, and there’s no way to override that with a link from your data.&lt;/P&gt;&lt;P&gt;What you can do instead:&lt;/P&gt;&lt;P&gt;Table + Markdown column (simplest)&lt;BR /&gt;Switch to a Table visualization and add a column with a Markdown link:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch events
| filter event.kind == "SDLC_EVENT"
| filter event.category == "pipeline"
| filter event.status == "finished"
| filter event.provider == "gitlab"
| filter matchesValue(vcs.repository.url.full, Repository)
| filter matchesValue(cicd.pipeline.name, Pipeline)
| filter matchesValue(cicd.pipeline.run.trigger, Trigger)
| fields Pipeline_ID = cicd.pipeline.run.id,
         Project     = vcs.repository.name,
         Ref         = vcs.branch.name,
         Status      = cicd.pipeline.run.outcome,
         Timestamp   = timestamp,
         URL         = cicd.pipeline.run.url.full
| fieldsAdd Link = concat("[Open pipeline](", URL, ")")
| sort Timestamp desc&lt;/LI-CODE&gt;&lt;P&gt;Second option is what&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21657"&gt;@p_devulapalli&lt;/a&gt;&amp;nbsp;answer, stay with Honeycomb&lt;BR /&gt;Use the built-in actions/drilldowns (no support for arbitrary URLs from data).&lt;/P&gt;&lt;P&gt;And last option is build a lightweight AppEngine app with the HoneycombChart component and map clicks to your URL field.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Oct 2025 14:51:25 GMT</pubDate>
    <dc:creator>t_pawlak</dc:creator>
    <dc:date>2025-10-08T14:51:25Z</dc:date>
    <item>
      <title>Honeycomb Dashboard Clickable Tiles</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Honeycomb-Dashboard-Clickable-Tiles/m-p/287310#M5433</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;I’m trying to make Honeycomb tiles clickable using a URL field from my DQL script.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;In a normal table visualization, this can be done with the Markdown column feature.&amp;nbsp;However, in the Honeycomb table, I can’t find a way to achieve the same.&lt;/FONT&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Is there any way to attach a URL variable from DQL so the tile becomes directly clickable?&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Or, alternatively, is there a way to modify the click interaction logic in the Honeycomb tile?&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="haowen_0-1759521591605.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30380i4D1453C3A033AD23/image-size/medium?v=v2&amp;amp;px=400" role="button" title="haowen_0-1759521591605.png" alt="haowen_0-1759521591605.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;fetch events 
| filter event.kind == "SDLC_EVENT" 
| filter event.category == "pipeline" 
| filter event.status == "finished" 
| filter event.provider == "gitlab" 
| filter in(vcs.repository.url.full, $Repository) 
| filter in(cicd.pipeline.name,$Pipeline)
| filter in(cicd.pipeline.run.trigger, $Trigger)
| fields 
Pipeline_ID = cicd.pipeline.run.id,
Project = vcs.repository.name,
Ref = vcs.branch.name,
Status = cicd.pipeline.run.outcome,
Timestamp = timestamp,
URL = cicd.pipeline.run.url.full


| sort Timestamp desc&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Oct 2025 06:46:35 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Honeycomb-Dashboard-Clickable-Tiles/m-p/287310#M5433</guid>
      <dc:creator>haowen</dc:creator>
      <dc:date>2025-10-07T06:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Honeycom Dashboard Clickable Tiles</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Honeycomb-Dashboard-Clickable-Tiles/m-p/287383#M5441</link>
      <description>&lt;P&gt;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/96302"&gt;@haowen&lt;/a&gt;&amp;nbsp;You would not be able to drilldown directly, but you can&amp;nbsp;select a cell to open a menu of cell-specific options&amp;nbsp; and pick "open cell with" to get to the details .&lt;/P&gt;&lt;P&gt;May not be same as what you would want, but this is the currently available option.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="p_devulapalli_0-1759792486047.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30392iF5FEE8F66DB5297C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="p_devulapalli_0-1759792486047.png" alt="p_devulapalli_0-1759792486047.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Oct 2025 23:21:14 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Honeycomb-Dashboard-Clickable-Tiles/m-p/287383#M5441</guid>
      <dc:creator>p_devulapalli</dc:creator>
      <dc:date>2025-10-06T23:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Honeycomb Dashboard Clickable Tiles</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Honeycomb-Dashboard-Clickable-Tiles/m-p/287501#M5445</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;Short answer is no,&amp;nbsp;&lt;/P&gt;&lt;P&gt;in the new Honeycomb visualization you can’t inject your own URL from DQL to make a tile directly clickable. Clicking a tile only opens the built-in action/drilldown menu, and there’s no way to override that with a link from your data.&lt;/P&gt;&lt;P&gt;What you can do instead:&lt;/P&gt;&lt;P&gt;Table + Markdown column (simplest)&lt;BR /&gt;Switch to a Table visualization and add a column with a Markdown link:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch events
| filter event.kind == "SDLC_EVENT"
| filter event.category == "pipeline"
| filter event.status == "finished"
| filter event.provider == "gitlab"
| filter matchesValue(vcs.repository.url.full, Repository)
| filter matchesValue(cicd.pipeline.name, Pipeline)
| filter matchesValue(cicd.pipeline.run.trigger, Trigger)
| fields Pipeline_ID = cicd.pipeline.run.id,
         Project     = vcs.repository.name,
         Ref         = vcs.branch.name,
         Status      = cicd.pipeline.run.outcome,
         Timestamp   = timestamp,
         URL         = cicd.pipeline.run.url.full
| fieldsAdd Link = concat("[Open pipeline](", URL, ")")
| sort Timestamp desc&lt;/LI-CODE&gt;&lt;P&gt;Second option is what&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/21657"&gt;@p_devulapalli&lt;/a&gt;&amp;nbsp;answer, stay with Honeycomb&lt;BR /&gt;Use the built-in actions/drilldowns (no support for arbitrary URLs from data).&lt;/P&gt;&lt;P&gt;And last option is build a lightweight AppEngine app with the HoneycombChart component and map clicks to your URL field.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Oct 2025 14:51:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Honeycomb-Dashboard-Clickable-Tiles/m-p/287501#M5445</guid>
      <dc:creator>t_pawlak</dc:creator>
      <dc:date>2025-10-08T14:51:25Z</dc:date>
    </item>
  </channel>
</rss>

