<?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 Dashboard tile showing problem title and object in Dashboarding</title>
    <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/242898#M3902</link>
    <description>&lt;P&gt;Is it possible to make a tile where it displays the problem title and effected object of active problems?&lt;/P&gt;
&lt;P&gt;I know you can add the problem tile and show the how many problems there are, or host health that shows impacted objects if you hover the hexagon. And you can just click the problem tile and you get to the problem page that show you what I'm asking about.&lt;/P&gt;
&lt;P&gt;But imagine if you having a dashboard up on a monitoring screen that you aren't controlling, only there to show info. Would be nice to have a tile to see what the problem was and on which object at first glance.&lt;/P&gt;
&lt;P&gt;From what I have seen on other community post, this wasn't able. But all the post I read through was a bit old, so decided to ask again incase there has been an update on this front and I'm just not able to find it.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Apr 2024 06:46:06 GMT</pubDate>
    <dc:creator>Brudal</dc:creator>
    <dc:date>2024-04-18T06:46:06Z</dc:date>
    <item>
      <title>Dashboard tile showing problem title and object</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/242898#M3902</link>
      <description>&lt;P&gt;Is it possible to make a tile where it displays the problem title and effected object of active problems?&lt;/P&gt;
&lt;P&gt;I know you can add the problem tile and show the how many problems there are, or host health that shows impacted objects if you hover the hexagon. And you can just click the problem tile and you get to the problem page that show you what I'm asking about.&lt;/P&gt;
&lt;P&gt;But imagine if you having a dashboard up on a monitoring screen that you aren't controlling, only there to show info. Would be nice to have a tile to see what the problem was and on which object at first glance.&lt;/P&gt;
&lt;P&gt;From what I have seen on other community post, this wasn't able. But all the post I read through was a bit old, so decided to ask again incase there has been an update on this front and I'm just not able to find it.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Apr 2024 06:46:06 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/242898#M3902</guid>
      <dc:creator>Brudal</dc:creator>
      <dc:date>2024-04-18T06:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard tile showing problem title and object</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/243700#M3913</link>
      <description>&lt;P&gt;Wouldn't that be solved by just having the problem page overall open on a screen? It has an auto refresh and will provide the contest of all the alerts. They are also redesigning the page so it will have even more customizability.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2024 12:40:25 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/243700#M3913</guid>
      <dc:creator>ChadTurner</dc:creator>
      <dc:date>2024-04-23T12:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard tile showing problem title and object</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/243746#M3916</link>
      <description>&lt;P&gt;The Problems page is very handy because of the auto-refresh and you can navigate to entities easily when problems arise or increase in severity.&lt;/P&gt;&lt;P&gt;But if you really need to, you can also create tiles with DQL, querying&amp;nbsp;the events bucket and filter for event.kind == "DAVIS_PROBLEM".&lt;/P&gt;&lt;P&gt;You can start building it with something like this and maybe add more stuff depending on your needs:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;fetch events
| filter event.kind == "DAVIS_PROBLEM"
| sort timestamp desc
| summarize {status = takeFirst(event.status),
            event.name = takeFirst(event.name),
            severityLevel = takeFirst(event.category),
            affected = takeFirst(affected_entity_ids)},
            by:{display_id}
| fieldsAdd Status = if((status == "ACTIVE"),"&lt;span class="lia-unicode-emoji" title=":red_circle:"&gt;🔴&lt;/span&gt; OPEN", 
                  else:if((status == "CLOSED"),"🟢 CLOSED"))
| fields Status, display_id, event.name,affected, severityLevel&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Eric_Yu_0-1713901451745.png" style="width: 861px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/19366iA951179D5FF96617/image-dimensions/861x186?v=v2" width="861" height="186" role="button" title="Eric_Yu_0-1713901451745.png" alt="Eric_Yu_0-1713901451745.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But if you need to have the actual entity names (instead of IDs) or the HOST where an application/service is running, use the lookup command to add that data into your tile.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="https://docs.dynatrace.com/docs/shortlink/correlation-and-join-commands#lookup" target="_blank" rel="noopener noreferrer"&gt;https://docs.dynatrace.com/docs/shortlink/correlation-and-join-commands#lookup&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2024 19:47:31 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/243746#M3916</guid>
      <dc:creator>Eric_Yu</dc:creator>
      <dc:date>2024-04-23T19:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard tile showing problem title and object</title>
      <link>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/244051#M3917</link>
      <description>&lt;P&gt;Thanks, I'll send it over to my colleague and see if it works for him. Otherwise he will have to survive.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2024 09:43:35 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Dashboarding/Dashboard-tile-showing-problem-title-and-object/m-p/244051#M3917</guid>
      <dc:creator>Brudal</dc:creator>
      <dc:date>2024-04-26T09:43:35Z</dc:date>
    </item>
  </channel>
</rss>

